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>2011-07-22 12:08:22 +0400
committerMichal Čihař <mcihar@suse.cz>2011-07-22 12:15:08 +0400
commitd55306252b4a8b4389dfaa0245a3aab6ed0b6376 (patch)
treef3d4dee63fd17942835b4f38f8380a83b62971d2 /import_status.php
parent3f8badd37f3e7ea78a718660e615ecf1c856e2f0 (diff)
Replace tabs with spaces, cleanup identation
Diffstat (limited to 'import_status.php')
-rw-r--r--import_status.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/import_status.php b/import_status.php
index d739009ee9..7c77e31f86 100644
--- a/import_status.php
+++ b/import_status.php
@@ -18,7 +18,7 @@ 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
- usleep(300000);
+ usleep(300000);
// wait until message is available
while ($_SESSION['Import_message']['message'] == null) {
@@ -27,7 +27,7 @@ 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 {