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 11:59:59 +0400
committerMichal Čihař <mcihar@suse.cz>2012-04-26 11:59:59 +0400
commitffaf63b79d54cabee0e427b305744a5d3891031f (patch)
treefd3a8911cc84bbe2f38c2467daa0a39ebf23b361 /tbl_select.php
parente4e414fbcd8663cd15030859e247172506560a80 (diff)
Move EnumOperators 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 86bccc0ca4..0de18429b3 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -142,7 +142,7 @@ echo PMA_generate_html_tabs(PMA_tbl_getSubTabs(), $url_params, '', 'topmenu2');
<td><select name="func[]">
<?php
if (strncasecmp($fields_type[$i], 'enum', 4) == 0) {
- foreach ($GLOBALS['cfg']['EnumOperators'] as $fc) {
+ foreach ($GLOBALS['PMA_Types']->getEnumOperators() as $fc) {
echo "\n" . ' '
. '<option value="' . htmlspecialchars($fc) . '">'
. htmlspecialchars($fc) . '</option>';