diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-28 07:49:35 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-06-28 07:49:35 -0700 |
commit | a0c07d4b549f10dcd954777ae7d846a9b81246d8 (patch) | |
tree | 9ccb879a0cf91c16275b7197cc6f431962a333c3 /modules/gallery/config | |
parent | e12ba26c3283de6ebeed52039e74cf6b93e8a7e8 (diff) |
Clean up code (i.e. preamble, tabs) from the caching implementation so the unit tests pass
Diffstat (limited to 'modules/gallery/config')
-rw-r--r-- | modules/gallery/config/cache.php | 31 |
1 files changed, 24 insertions, 7 deletions
diff --git a/modules/gallery/config/cache.php b/modules/gallery/config/cache.php index 5f2cd6de..cc3ac87d 100644 --- a/modules/gallery/config/cache.php +++ b/modules/gallery/config/cache.php @@ -1,5 +1,23 @@ -<?php defined('SYSPATH') OR die('No direct access allowed.'); +<?php defined("SYSPATH") or die("No direct script access."); /** + * Gallery - a web based photo album viewer and editor + * Copyright (C) 2000-2009 Bharat Mediratta + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. + */ +/* * @package Cache * * Cache settings, defined as arrays, or "groups". If no group name is @@ -23,10 +41,9 @@ * caches are deleted. This is commonly referred to as "garbage collection". * Setting this to 0 or a negative number will disable automatic garbage collection. */ -$config['default'] = array -( - 'driver' => 'database', - 'params' => null, - 'lifetime' => 84600, - 'requests' => 1000 +$config["default"] = array ( + "driver" => "database", + "params" => null, + "lifetime" => 84600, + "requests" => 1000 ); |