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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-04-27 15:27:36 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-04-27 15:27:36 +0300
commitfb52e6af04e9c87ee2b31d74dfcb7b14bbe4f14a (patch)
tree62da8b1c6e26dbcc6aa3fbe6430082e6aff7419c /js/get_image.js.php
parent04f989269cf0bf7f2ac7925b6b193a476a1dfff9 (diff)
Closing parenthesis of a multi-line function call must be on a line by itself
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'js/get_image.js.php')
-rw-r--r--js/get_image.js.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/js/get_image.js.php b/js/get_image.js.php
index 7ac1ffd410..19c57c0308 100644
--- a/js/get_image.js.php
+++ b/js/get_image.js.php
@@ -20,9 +20,11 @@ require_once './libraries/common.inc.php';
require_once './libraries/OutputBuffering.class.php';
$buffer = PMA_OutputBuffering::getInstance();
$buffer->start();
-register_shutdown_function(function() {
- echo PMA_OutputBuffering::getInstance()->getContents();
-});
+register_shutdown_function(
+ function() {
+ echo PMA_OutputBuffering::getInstance()->getContents();
+ }
+);
// Get the data for the sprites, if it's available
if (is_readable($_SESSION['PMA_Theme']->getPath() . '/sprites.lib.php')) {