The branch, master has been updated via b13d2a33edb4cdb95c3a43fbe5dc0f2569e36cd7 (commit) from aa270ae62b971e5ba0fb47f28d63ed051c5290a2 (commit)
- Log ----------------------------------------------------------------- commit b13d2a33edb4cdb95c3a43fbe5dc0f2569e36cd7 Author: Michal Čihař mcihar@suse.cz Date: Thu Jul 21 11:41:31 2011 +0200
Fix indentation
-----------------------------------------------------------------------
Summary of changes: scripts/decode_bug.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/decode_bug.php b/scripts/decode_bug.php index 5e29749..e5a645b 100644 --- a/scripts/decode_bug.php +++ b/scripts/decode_bug.php @@ -87,9 +87,9 @@ if (!empty($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)); + $result = PMA_printDecodedBug(gzuncompress($bug_decoded)); } else { - $result = 'Error: "gzuncompress()" is unavailable!' . "\n"; + $result = 'Error: "gzuncompress()" is unavailable!' . "\n"; } } else { $result = PMA_printDecodedBug($bug_decoded);
hooks/post-receive