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:
Diffstat (limited to 'scripts/decode_bug.php')
-rw-r--r--scripts/decode_bug.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/decode_bug.php b/scripts/decode_bug.php
index 79a9ae0331..7dea1e249b 100644
--- a/scripts/decode_bug.php
+++ b/scripts/decode_bug.php
@@ -80,7 +80,7 @@ if (!empty($_POST) && isset($_POST['bug_encoded'])) {
}
if (!empty($bug_encoded)) {
- if (get_magic_quotes_gpc()) {
+ if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {
$bug_encoded = stripslashes($bug_encoded);
}