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 11:10:37 +0400
committerMichal Čihař <mcihar@suse.cz>2011-07-22 11:10:37 +0400
commit219ec73d69a0bee94ac3bf98757db25360862b39 (patch)
treea45557d4d7faaa44cd9f916306cacd278e0a6c68 /db_tracking.php
parent36298932e2a80bbd207b3b86475033f8b728a0b4 (diff)
Spacing around if
Diffstat (limited to 'db_tracking.php')
-rw-r--r--db_tracking.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/db_tracking.php b/db_tracking.php
index 38a231d4e0..df1106e83b 100644
--- a/db_tracking.php
+++ b/db_tracking.php
@@ -16,7 +16,7 @@ $GLOBALS['js_include'][] = 'db_structure.js';
/**
* If we are not in an Ajax request, then do the common work and show the links etc.
*/
-if($GLOBALS['is_ajax_request'] != true) {
+if ($GLOBALS['is_ajax_request'] != true) {
require './libraries/db_common.inc.php';
}
$url_query .= '&amp;goto=tbl_tracking.php&amp;back=db_tracking.php';
@@ -34,7 +34,7 @@ if (isset($_REQUEST['delete_tracking']) && isset($_REQUEST['table'])) {
* If in an Ajax request, generate the success message and use
* {@link PMA_ajaxResponse()} to send the output
*/
- if($GLOBALS['is_ajax_request'] == true) {
+ if ($GLOBALS['is_ajax_request'] == true) {
$message = PMA_Message::success();
PMA_ajaxResponse($message, true);
}