diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-02-09 15:06:29 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-02-09 15:06:35 +0100 |
commit | 18fa8e27537c3aa785d2ea9ca6c2a83dc5882757 (patch) | |
tree | 15fc67b22decfce56f6135171ffbde8ebc027692 /settings | |
parent | 279cbeb001c9d8e917838ffb6a1b10394f27cf79 (diff) | |
download | nextcloud-server-18fa8e27537c3aa785d2ea9ca6c2a83dc5882757.tar.gz nextcloud-server-18fa8e27537c3aa785d2ea9ca6c2a83dc5882757.zip |
json_encode the appid
Diffstat (limited to 'settings')
-rw-r--r-- | settings/js/apps-custom.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/apps-custom.php b/settings/js/apps-custom.php index 9ec2a758ee3..d827dfc7058 100644 --- a/settings/js/apps-custom.php +++ b/settings/js/apps-custom.php @@ -23,4 +23,4 @@ foreach($combinedApps as $app) { echo("\n"); } -echo ("var appid =\"".$_GET['appid']."\";");
\ No newline at end of file +echo ("var appid =".json_encode($_GET['appid']).";");
\ No newline at end of file |