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 /user_password.php
parent36298932e2a80bbd207b3b86475033f8b728a0b4 (diff)
Spacing around if
Diffstat (limited to 'user_password.php')
-rw-r--r--user_password.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_password.php b/user_password.php
index a4eeffea82..3ca344247e 100644
--- a/user_password.php
+++ b/user_password.php
@@ -56,7 +56,7 @@ if (isset($_REQUEST['nopass'])) {
$password = $_REQUEST['pma_pw'];
}
- if($GLOBALS['is_ajax_request'] == true && $_error == true) {
+ if ($GLOBALS['is_ajax_request'] == true && $_error == true) {
/**
* If in an Ajax request, we don't need to show the rest of the page
*/
@@ -95,7 +95,7 @@ if (isset($_REQUEST['nopass'])) {
$message = PMA_Message::success(__('The profile has been updated.'));
- if($GLOBALS['is_ajax_request'] == true) {
+ if ($GLOBALS['is_ajax_request'] == true) {
$extra_data['sql_query'] = PMA_showMessage($message, $sql_query, 'success');
PMA_ajaxResponse($message, true, $extra_data);
}