summaryrefslogtreecommitdiff
path: root/modules/gallery/config/cache.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gallery/config/cache.php')
-rw-r--r--modules/gallery/config/cache.php31
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
);