diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-04-18 23:07:08 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-04-18 23:07:08 +0000 |
commit | 0fe439876523d453ca1c5ad7ddadc808c02c9cf8 (patch) | |
tree | f63ce7c1e4c3af2ae29c201fa3c5a5de9ba379a6 | |
parent | 6b89e7fa2a32ad4e8013c32db625df50db1bbc39 (diff) |
whitespace cleanup
-rw-r--r-- | core/helpers/model_cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/helpers/model_cache.php b/core/helpers/model_cache.php index 0fea8b75..08783615 100644 --- a/core/helpers/model_cache.php +++ b/core/helpers/model_cache.php @@ -20,7 +20,7 @@ class model_cache_Core { private static $cache; - static function get($model_name, $id, $field_name="id") { + static function get($model_name, $id, $field_name="id") { if (TEST_MODE || empty(self::$cache->$model_name->$field_name->$id)) { $model = ORM::factory($model_name)->where($field_name, $id)->find(); if (!$model->loaded) { |