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:01:19 +0400
committerMichal Čihař <mcihar@suse.cz>2012-04-26 12:01:19 +0400
commit89d173320031ae9b1c613a422adaa9f7f140774d (patch)
tree8c0faf03d106cd66e91ca5be2efc9820bc79fc9d /tbl_select.php
parentffaf63b79d54cabee0e427b305744a5d3891031f (diff)
Move TextOperators 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 0de18429b3..2f2170b7d4 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -148,7 +148,7 @@ echo PMA_generate_html_tabs(PMA_tbl_getSubTabs(), $url_params, '', 'topmenu2');
. htmlspecialchars($fc) . '</option>';
}
} elseif (preg_match('@char|blob|text|set@i', $fields_type[$i])) {
- foreach ($GLOBALS['cfg']['TextOperators'] as $fc) {
+ foreach ($GLOBALS['PMA_Types']->getTextOperators() as $fc) {
echo "\n" . ' '
. '<option value="' . htmlspecialchars($fc) . '">'
. htmlspecialchars($fc) . '</option>';