summaryrefslogtreecommitdiffstats
path: root/lib/class/database_object.abstract.php
diff options
context:
space:
mode:
authorPaul 'flowerysong' Arthur <flowerysong00@yahoo.com>2010-03-14 06:10:27 +0000
committerPaul 'flowerysong' Arthur <flowerysong00@yahoo.com>2010-03-14 06:10:27 +0000
commitd78c207f76c8ae57744300611519f4c85c2c34c4 (patch)
tree7a29bf59f4c3c9fc5f9f654ba86e6cd3f065a74f /lib/class/database_object.abstract.php
parent98c5c04643228731b1dcf0eb48fa3dbc77815ad6 (diff)
downloadampache-d78c207f76c8ae57744300611519f4c85c2c34c4.tar.gz
ampache-d78c207f76c8ae57744300611519f4c85c2c34c4.tar.bz2
ampache-d78c207f76c8ae57744300611519f4c85c2c34c4.zip
Cosmetics: use tabs for indentation, tweak some indentation/coding style.
Diffstat (limited to 'lib/class/database_object.abstract.php')
-rw-r--r--lib/class/database_object.abstract.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/class/database_object.abstract.php b/lib/class/database_object.abstract.php
index e0ccc1bf..1bb368d6 100644
--- a/lib/class/database_object.abstract.php
+++ b/lib/class/database_object.abstract.php
@@ -119,14 +119,14 @@ abstract class database_object {
} // remove_from_cache
- /**
- * _auto_init
- * Load in the cache settings once so we can avoid function calls
- */
- public static function _auto_init() {
+ /**
+ * _auto_init
+ * Load in the cache settings once so we can avoid function calls
+ */
+ public static function _auto_init() {
- self::$_enabled = Config::get('memory_cache');
+ self::$_enabled = Config::get('memory_cache');
- } // _auto_init
+ } // _auto_init
} // end database_object