20 lines
467 B
PHP
20 lines
467 B
PHP
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||
|
|
||
|
/**
|
||
|
* WWZ Configuration - Debug Settings
|
||
|
*
|
||
|
* @package lnApp
|
||
|
* @category Configuration
|
||
|
* @author Deon George
|
||
|
* @copyright (c) 2010-2013 Deon George
|
||
|
* @license http://dev.leenooks.net/license.html
|
||
|
*/
|
||
|
|
||
|
return array
|
||
|
(
|
||
|
'ajax'=>FALSE, // AJAX actions can only be run by ajax calls if set to FALSE
|
||
|
'etag'=>FALSE, // Force generating ETAGS
|
||
|
'site'=>FALSE, // Glogal site debug
|
||
|
);
|
||
|
?>
|