27 lines
780 B
PHP
27 lines
780 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* lnApp 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
|
|
'method_security'=>FALSE, // Debug Method Security
|
|
'site'=>FALSE, // Glogal site debug
|
|
'email_bcc_admin'=>array(
|
|
// 'deon@leenooks.vpn' => 'Deon George',
|
|
), // BCC this person on all emails
|
|
'email_admin_only'=>array(
|
|
// 'login_reset'=>array('deon@leenooks.vpn'=>'Deon George'),
|
|
), // Send emails for this template to just this person
|
|
);
|
|
?>
|