diff options
author | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 06:10:27 +0000 |
---|---|---|
committer | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 06:10:27 +0000 |
commit | d78c207f76c8ae57744300611519f4c85c2c34c4 (patch) | |
tree | 7a29bf59f4c3c9fc5f9f654ba86e6cd3f065a74f /lib/class/database_object.abstract.php | |
parent | 98c5c04643228731b1dcf0eb48fa3dbc77815ad6 (diff) | |
download | ampache-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.php | 14 |
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 |