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>2012-04-26 12:02:30 +0400
committerMichal Čihař <mcihar@suse.cz>2012-04-26 12:02:30 +0400
commit454493992efa3aaf69836c07cf6835dd2d6785d7 (patch)
tree30e6e5f43ce5caf11a5bbc315525d79ce14b6bc4 /tbl_select.php
parent89d173320031ae9b1c613a422adaa9f7f140774d (diff)
Move NumOperators to PMA_Types
Diffstat (limited to 'tbl_select.php')
-rw-r--r--tbl_select.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_select.php b/tbl_select.php
index 2f2170b7d4..5940fb117a 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -154,7 +154,7 @@ echo PMA_generate_html_tabs(PMA_tbl_getSubTabs(), $url_params, '', 'topmenu2');
. htmlspecialchars($fc) . '</option>';
}
} else {
- foreach ($GLOBALS['cfg']['NumOperators'] as $fc) {
+ foreach ($GLOBALS['PMA_Types']->getNumberOperators() as $fc) {
echo "\n" . ' '
. '<option value="' . htmlspecialchars($fc) . '">'
. htmlspecialchars($fc) . '</option>';