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-10-28 15:38:27 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-10-28 15:38:27 +0400
commit1a177f10ae822fd9d7f67d770f31ff6a424b5b47 (patch)
treef2e42a2fa09b6aa5fb9f8df18ac72f22ff2ddd02 /prefs_forms.php
parentd23417635fc4867458e63c40350262f0f79959dc (diff)
Coding style: Fix some methods names
Diffstat (limited to 'prefs_forms.php')
-rw-r--r--prefs_forms.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/prefs_forms.php b/prefs_forms.php
index 023d8ba18c..e613c0cd8e 100644
--- a/prefs_forms.php
+++ b/prefs_forms.php
@@ -18,7 +18,7 @@ require_once 'libraries/config/Form.class.php';
require_once 'libraries/config/FormDisplay.class.php';
require 'libraries/config/user_preferences.forms.php';
-PMA_userprefs_pageinit();
+PMA_userprefsPageInit();
// handle form processing
@@ -52,13 +52,13 @@ if (isset($_POST['revert'])) {
$error = null;
if ($form_display->process(false) && !$form_display->hasErrors()) {
// save settings
- $old_settings = PMA_load_userprefs();
- $result = PMA_save_userprefs(ConfigFile::getInstance()->getConfigArray());
+ $old_settings = PMA_loadUserprefs();
+ $result = PMA_saveUserprefs(ConfigFile::getInstance()->getConfigArray());
if ($result === true) {
// reload config
$GLOBALS['PMA_Config']->loadUserPreferences();
$hash = ltrim(filter_input(INPUT_POST, 'tab_hash'), '#');
- PMA_userprefs_redirect(
+ PMA_userprefsRedirect(
$forms, $old_settings, 'prefs_forms.php',
array('form' => $form_param), $hash
);