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_operations.php
parent36298932e2a80bbd207b3b86475033f8b728a0b4 (diff)
Spacing around if
Diffstat (limited to 'db_operations.php')
-rw-r--r--db_operations.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_operations.php b/db_operations.php
index e2d1e2bba5..2382389cf8 100644
--- a/db_operations.php
+++ b/db_operations.php
@@ -300,7 +300,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) {
* Database has been successfully renamed/moved. If in an Ajax request,
* generate the output with {@link PMA_ajaxResponse} and exit
*/
- if( $GLOBALS['is_ajax_request'] == true) {
+ if ( $GLOBALS['is_ajax_request'] == true) {
$extra_data['newname'] = $newname;
$extra_data['sql_query'] = PMA_showMessage(NULL, $sql_query);
PMA_ajaxResponse($message, $message->isSuccess(), $extra_data);