diff options
Diffstat (limited to 'settings/js/apps-custom.php')
-rw-r--r-- | settings/js/apps-custom.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/js/apps-custom.php b/settings/js/apps-custom.php index d827dfc7058..2b2f256b39f 100644 --- a/settings/js/apps-custom.php +++ b/settings/js/apps-custom.php @@ -9,8 +9,8 @@ // Check if admin user OC_Util::checkAdminUser(); -// Set the content type to JSON -header('Content-type: application/json'); +// Set the content type to JS +header('Content-type: application/javascript'); // Disallow caching header("Cache-Control: no-cache, must-revalidate"); @@ -23,4 +23,4 @@ foreach($combinedApps as $app) { echo("\n"); } -echo ("var appid =".json_encode($_GET['appid']).";");
\ No newline at end of file +echo ("var appid =".json_encode($_GET['appid']).";"); |