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>2012-04-02 11:50:43 +0400
committerMichal Čihař <mcihar@suse.cz>2012-04-02 11:50:43 +0400
commit7464f215aa8bf8915ff9cbca543811b89516e8c4 (patch)
treecb0f7f14d5cf69c078962d8c06dfb1037a7061fd /scripts
parent5b09d0f06650c2059e4148d1122be4a0c39d7bda (diff)
parent1d70667bdbd204e6ec6d56b6dcbc06fed48c1dab (diff)
Merge remote-tracking branch 'origin/QA_3_5'
Diffstat (limited to 'scripts')
-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 5e7d2b57d3..ea4b803322 100644
--- a/scripts/decode_bug.php
+++ b/scripts/decode_bug.php
@@ -77,7 +77,7 @@ if (!empty($_POST) && isset($_POST['bug_encoded'])) {
$bug_encoded = $_POST['bug_encoded'];
}
-if (!empty($bug_encoded)) {
+if (!empty($bug_encoded) && is_string($bug_encoded)) {
if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {
$bug_encoded = stripslashes($bug_encoded);
}