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:
authorMarc Delisle <marc@infomarc.info>2009-12-05 15:37:27 +0300
committerMarc Delisle <marc@infomarc.info>2009-12-05 15:37:27 +0300
commit97ff371cb586ae997d517b20579df53c8040233e (patch)
tree4c304b6ab7162de5d1cab05ed4ed897844b73d6e /import_status.php
parent54818b50d78250e8d49b2194e4e8caf8da3a631a (diff)
code cleanup
Diffstat (limited to 'import_status.php')
-rw-r--r--import_status.php17
1 files changed, 9 insertions, 8 deletions
diff --git a/import_status.php b/import_status.php
index fa148f06e5..93cd7ba00e 100644
--- a/import_status.php
+++ b/import_status.php
@@ -16,17 +16,18 @@ header("Expires: Sat, 11 Jan 1991 06:30:00 GMT"); // Date in the past
// $GLOBALS["message"] is used for asking for an import message
if (isset($GLOBALS["message"]) && $GLOBALS["message"]) {
- header('Content-type: text/html');
+ header('Content-type: text/html');
- while ($_SESSION['Import_message']['message']==null) // wait until message is available
- usleep(250000); // 0.25 sec
+ while ($_SESSION['Import_message']['message'] == null) { // wait until message is available
+ 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 '</fieldset>'."\n";
+ echo $_SESSION['Import_message']['message'];
+ echo '<fieldset class="tblFooters">' . "\n";
+ echo ' [ <a href="' . $_SESSION['Import_message']['go_back_url'] . '">' . $GLOBALS["strBack"] . '</a> ]' . "\n";
+ echo '</fieldset>'."\n";
} else {
- PMA_importAjaxStatus($GLOBALS["id"]);
+ PMA_importAjaxStatus($GLOBALS["id"]);
}
?>