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>2012-06-03 19:10:47 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-06-03 19:10:47 +0400
commit6f9253b59e190c9e1ee8f1885c1e8c41b4fb8755 (patch)
tree66932de29d663a796540ab1c83def905d3016ea9 /import_status.php
parentddcb03fdc2a94d976ba4d1410d590634fe726e84 (diff)
Various coding style improvements
Diffstat (limited to 'import_status.php')
-rw-r--r--import_status.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/import_status.php b/import_status.php
index c3d9a56f4b..b544748b9d 100644
--- a/import_status.php
+++ b/import_status.php
@@ -104,7 +104,8 @@ if (isset($GLOBALS["message"]) && $GLOBALS["message"]) {
header('Content-type: text/html');
- // wait 0.3 sec before we check for $_SESSION variable, which is set inside import.php
+ // wait 0.3 sec before we check for $_SESSION variable,
+ // which is set inside import.php
usleep(300000);
// wait until message is available
@@ -114,7 +115,8 @@ if (isset($GLOBALS["message"]) && $GLOBALS["message"]) {
echo $_SESSION['Import_message']['message'];
echo '<fieldset class="tblFooters">' . "\n";
- echo ' [ <a href="' . $_SESSION['Import_message']['go_back_url'] . '">' . __('Back') . '</a> ]' . "\n";
+ echo ' [ <a href="' . $_SESSION['Import_message']['go_back_url']
+ . '">' . __('Back') . '</a> ]' . "\n";
echo '</fieldset>'."\n";
} else {