This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/application/config/auth.php
2011-05-03 09:49:04 +10:00

20 lines
436 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB authentication configuration
*
* @package OSB
* @category Configuration
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
return array(
'driver' => 'OSB',
'hash_method' => 'md5',
'salt_pattern' => null,
'lifetime' => 1209600,
'session_key' => 'auth_user',
);
?>