diff options
author | plegall <plg@piwigo.org> | 2010-03-19 23:20:22 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-03-19 23:20:22 +0000 |
commit | d7d5fdd2aff6d912f33680a4251ddc05da088138 (patch) | |
tree | 365420f506e212fcaba4b8860028b02792daecf0 /admin/themes | |
parent | b005dbbbf81658273e58326a4b8e1625de12ac92 (diff) |
feature 724: improvement, auto-complete is not case sensitive anymore
git-svn-id: http://piwigo.org/svn/trunk@5198 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/element_set_global.tpl | 2 | ||||
-rw-r--r-- | admin/themes/default/template/element_set_unit.tpl | 2 | ||||
-rw-r--r-- | admin/themes/default/template/picture_modify.tpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/admin/themes/default/template/element_set_global.tpl b/admin/themes/default/template/element_set_global.tpl index 6291013ad..8100db457 100644 --- a/admin/themes/default/template/element_set_global.tpl +++ b/admin/themes/default/template/element_set_global.tpl @@ -14,7 +14,7 @@ $("#tags").fcbkcomplete({ json_url: "admin.php?fckb_tags=1", cache: false, - filter_case: true, + filter_case: false, filter_hide: true, firstselected: true, filter_selected: true, diff --git a/admin/themes/default/template/element_set_unit.tpl b/admin/themes/default/template/element_set_unit.tpl index 11693a994..e06c031c5 100644 --- a/admin/themes/default/template/element_set_unit.tpl +++ b/admin/themes/default/template/element_set_unit.tpl @@ -18,7 +18,7 @@ $(tag_boxes_selector).fcbkcomplete({ json_url: "admin.php?fckb_tags=1", cache: false, - filter_case: true, + filter_case: false, filter_hide: true, firstselected: true, filter_selected: true, diff --git a/admin/themes/default/template/picture_modify.tpl b/admin/themes/default/template/picture_modify.tpl index be5fa94a4..f771a673b 100644 --- a/admin/themes/default/template/picture_modify.tpl +++ b/admin/themes/default/template/picture_modify.tpl @@ -9,7 +9,7 @@ $("#tags").fcbkcomplete({ json_url: "admin.php?fckb_tags=1", cache: false, - filter_case: true, + filter_case: false, filter_hide: true, firstselected: true, filter_selected: true, |