aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2011-04-16 16:15:37 +0000
committerplegall <plg@piwigo.org>2011-04-16 16:15:37 +0000
commitd33d216847508dfecd68c1c173628bcb5292fa24 (patch)
tree1fb3dd5f6d086e196dce33e138b41cbdd0cadcac
parente3499463b35a8adfa9fa3c40ed428daf00772e0d (diff)
merge r10421 from branch 2.2 to trunk
bug 2251: auto-complete was not working on second tag if cache=true. git-svn-id: http://piwigo.org/svn/trunk@10422 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/themes/default/template/batch_manager_global.tpl2
-rw-r--r--admin/themes/default/template/batch_manager_unit.tpl2
-rw-r--r--admin/themes/default/template/picture_modify.tpl2
3 files changed, 3 insertions, 3 deletions
diff --git a/admin/themes/default/template/batch_manager_global.tpl b/admin/themes/default/template/batch_manager_global.tpl
index e97a53ad6..1b922cd7e 100644
--- a/admin/themes/default/template/batch_manager_global.tpl
+++ b/admin/themes/default/template/batch_manager_global.tpl
@@ -13,7 +13,7 @@
jQuery(document).ready(function() {
jQuery("#tags").fcbkcomplete({
json_url: "admin.php?fckb_tags=1",
- cache: true,
+ cache: false,
filter_case: false,
filter_hide: true,
firstselected: true,
diff --git a/admin/themes/default/template/batch_manager_unit.tpl b/admin/themes/default/template/batch_manager_unit.tpl
index 12ff16957..e8b50a85c 100644
--- a/admin/themes/default/template/batch_manager_unit.tpl
+++ b/admin/themes/default/template/batch_manager_unit.tpl
@@ -17,7 +17,7 @@ prefix = ", ";
jQuery(document).ready(function() {
$(tag_boxes_selector).fcbkcomplete({
json_url: "admin.php?fckb_tags=1",
- cache: true,
+ cache: false,
filter_case: false,
filter_hide: true,
firstselected: true,
diff --git a/admin/themes/default/template/picture_modify.tpl b/admin/themes/default/template/picture_modify.tpl
index 438acb8a8..a5244f240 100644
--- a/admin/themes/default/template/picture_modify.tpl
+++ b/admin/themes/default/template/picture_modify.tpl
@@ -7,7 +7,7 @@
jQuery(document).ready(function() {
jQuery("#tags").fcbkcomplete({
json_url: "admin.php?fckb_tags=1",
- cache: true,
+ cache: false,
filter_case: false,
filter_hide: true,
firstselected: true,