Initial version

This commit is contained in:
Deon George
2014-06-30 14:22:57 +10:00
commit d4b3b0f9bc
18 changed files with 1262 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class overrides Kohana's Cookie
*
* @package AER
* @category Modifications
* @author Deon George
* @copyright (c) 2014 Deon George
* @license http://dev.leenooks.net/license.html
*/
class Cookie extends Kohana_Cookie {
public static $salt = 'AER';
}
?>