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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-04-14 07:39:21 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-04-14 07:39:21 +0400
commit33321518591ade27e1651bf3e912d6bdecb7f342 (patch)
treeee0a53b563ed0f641dd90faccadf2bbda26ec2e0 /prefs_forms.php
parente6626004155fbf2932c36e84bc3c251b2a76dce3 (diff)
Fix Checkstyle Warnings - Type: CloseBracketLine (Closing parenthesis of a multi-line function call must be on a line by itself)
Diffstat (limited to 'prefs_forms.php')
-rw-r--r--prefs_forms.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/prefs_forms.php b/prefs_forms.php
index 08f2ec6e79..6ae7adf6d8 100644
--- a/prefs_forms.php
+++ b/prefs_forms.php
@@ -42,8 +42,10 @@ if (isset($_POST['revert'])) {
$form_display->fixErrors();
// redirect
$url_params = array('form' => $form_param);
- PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'prefs_forms.php'
- . PMA_generate_common_url($url_params, '&'));
+ PMA_sendHeaderLocation(
+ $cfg['PmaAbsoluteUri'] . 'prefs_forms.php'
+ . PMA_generate_common_url($url_params, '&')
+ );
exit;
}
@@ -56,8 +58,10 @@ if ($form_display->process(false) && !$form_display->hasErrors()) {
// reload config
$GLOBALS['PMA_Config']->loadUserPreferences();
$hash = ltrim(filter_input(INPUT_POST, 'tab_hash'), '#');
- PMA_userprefs_redirect($forms, $old_settings, 'prefs_forms.php', array(
- 'form' => $form_param), $hash);
+ PMA_userprefs_redirect(
+ $forms, $old_settings, 'prefs_forms.php',
+ array('form' => $form_param), $hash
+ );
exit;
} else {
$error = $result;