summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers/model_cache.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-07-17 16:58:15 -0700
committerBharat Mediratta <bharat@menalto.com>2009-07-17 16:58:15 -0700
commitbb981bb7b60d6b0155b73bbb37edb25f2f207ec0 (patch)
treeb4dd91a42f3da07fae42c64aeb3d49f46e6ebc6a /modules/gallery/helpers/model_cache.php
parente7c6861507ea7ca01d3d4ed7b4189c030c8d07b3 (diff)
parentcd907c2b42f8b50ebe6d490aab42365e16deb258 (diff)
Merge branch 'master' of git@github.com:/gallery/gallery3
Diffstat (limited to 'modules/gallery/helpers/model_cache.php')
-rw-r--r--modules/gallery/helpers/model_cache.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/gallery/helpers/model_cache.php b/modules/gallery/helpers/model_cache.php
index 2649fdbd..a3e09862 100644
--- a/modules/gallery/helpers/model_cache.php
+++ b/modules/gallery/helpers/model_cache.php
@@ -32,10 +32,8 @@ class model_cache_Core {
return self::$cache->$model_name->$field_name->$id;
}
- static function clear($model_name, $id, $field_name="id") {
- if (!empty(self::$cache->$model_name->$field_name->$id)) {
- unset(self::$cache->$model_name->$field_name->$id);
- }
+ static function clear() {
+ self::$cache = new stdClass();
}
static function set($model) {