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:
authorninadsp <ninadsp16289@gmail.com>2010-05-24 17:02:42 +0400
committerninadsp <ninadsp16289@gmail.com>2010-05-24 17:02:42 +0400
commit38ac78e3baa6e925e6ef023a4196ae1d323bffc9 (patch)
tree67842f470e8579d9c79905a265d48e6f7e47ff91 /import_status.php
parentbed1948d044f0e5d9125d3c905e8390d8a75b0de (diff)
merging changes from origin
Diffstat (limited to 'import_status.php')
-rwxr-xr-ximport_status.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/import_status.php b/import_status.php
index dccd41fddd..4125eadeab 100755
--- a/import_status.php
+++ b/import_status.php
@@ -18,14 +18,17 @@ if (isset($GLOBALS["message"]) && $GLOBALS["message"]) {
header('Content-type: text/html');
- usleep(300000); // wait 0.3 sec before we check for $_SESSION variable, which is set inside import.php
- while ($_SESSION['Import_message']['message'] == null) { // wait until message is available
+ // wait 0.3 sec before we check for $_SESSION variable, which is set inside import.php
+ usleep(300000);
+
+ // wait until message is available
+ while ($_SESSION['Import_message']['message'] == null) {
usleep(250000); // 0.25 sec
}
echo $_SESSION['Import_message']['message'];
echo '<fieldset class="tblFooters">' . "\n";
- echo ' [ <a href="' . $_SESSION['Import_message']['go_back_url'] . '">' . $GLOBALS["strBack"] . '</a> ]' . "\n";
+ echo ' [ <a href="' . $_SESSION['Import_message']['go_back_url'] . '">' . __('Back') . '</a> ]' . "\n";
echo '</fieldset>'."\n";
} else {