Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2013-10-03 17:50:37 +0400
committerMichal Čihař <mcihar@suse.cz>2013-10-03 17:50:37 +0400
commit0ad8714cb113ce5e15b0ca222eaa936ac684541b (patch)
treea35cb73efe3e694bfcebd1c7a7424b91e46331ef /js/get_scripts.js.php
parent39dd5f9e4f766165e99a5bb844cedddc4cac51a0 (diff)
Properly detect variable presence
Diffstat (limited to 'js/get_scripts.js.php')
-rw-r--r--js/get_scripts.js.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/get_scripts.js.php b/js/get_scripts.js.php
index 3c0bc87146..72b3b44de8 100644
--- a/js/get_scripts.js.php
+++ b/js/get_scripts.js.php
@@ -41,7 +41,7 @@ if (! empty($_GET['scripts']) && is_array($_GET['scripts'])) {
}
}
-if ($_GET['call_done']) {
+if (isset($_GET['call_done'])) {
echo "AJAX.scriptHandler.done();";
}
?>