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:51:15 +0400
committerMichal Čihař <mcihar@suse.cz>2012-04-02 11:51:15 +0400
commit517aa612714449eab640bf6c90f702815ba8cedf (patch)
tree34031c12c8df28219cf77604399b91a8d5d7174d /scripts
parent7464f215aa8bf8915ff9cbca543811b89516e8c4 (diff)
Coding style
Diffstat (limited to 'scripts')
-rw-r--r--scripts/decode_bug.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/decode_bug.php b/scripts/decode_bug.php
index ea4b803322..a71f685514 100644
--- a/scripts/decode_bug.php
+++ b/scripts/decode_bug.php
@@ -86,9 +86,9 @@ if (!empty($bug_encoded) && is_string($bug_encoded)) {
$bug_decoded = base64_decode($bug_encoded);
if (substr($bug_encoded, 0, 2) == 'eN') {
if (function_exists('gzuncompress')) {
- $result = PMA_printDecodedBug(gzuncompress($bug_decoded));
- } else {
- $result = 'Error: &quot;gzuncompress()&quot; is unavailable!' . "\n";
+ $result = PMA_printDecodedBug(gzuncompress($bug_decoded));
+ } else {
+ $result = 'Error: &quot;gzuncompress()&quot; is unavailable!' . "\n";
}
} else {
$result = PMA_printDecodedBug($bug_decoded);