diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-09-29 20:47:43 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-09-29 20:47:43 -0700 |
commit | f84782d6200efb424731c93bd029c7cbeb9f3dad (patch) | |
tree | 1fea5d8c18a02a2a7e1cab901676bc4631b06df5 /modules/gallery/views | |
parent | ef8751468b998baddbc6d5827a392ed6e12e5548 (diff) |
Stop caching all module variables in the vars table using the
name=_cache row. If that overflows, it will cause us to be unable to
load variables, and we can't recover from that.
Instead, use the Cache table. Bump the gallery module to v40. Fixes
ticket #1405.
Diffstat (limited to 'modules/gallery/views')
-rw-r--r-- | modules/gallery/views/admin_advanced_settings.html.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gallery/views/admin_advanced_settings.html.php b/modules/gallery/views/admin_advanced_settings.html.php index 1f7d2f64..edaeecaf 100644 --- a/modules/gallery/views/admin_advanced_settings.html.php +++ b/modules/gallery/views/admin_advanced_settings.html.php @@ -17,7 +17,6 @@ <th> <?= t("Value") ?></th> </tr> <? foreach ($vars as $var): ?> - <? if ($var->module_name == "gallery" && $var->name == "_cache") continue ?> <tr class="<?= text::alternate("g-odd", "g-even") ?>"> <td> <?= $var->module_name ?> </td> <td> <?= html::clean($var->name) ?> </td> |