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.

16 lines
367 B
PHP
Raw Normal View History

2014-06-30 14:22:57 +10:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class overrides Kohana's Cookie
*
2014-07-09 13:04:56 +10:00
* @package Membership Database
2014-06-30 14:22:57 +10:00
* @category Modifications
* @author Deon George
* @copyright (c) 2014 Deon George
* @license http://dev.leenooks.net/license.html
*/
class Cookie extends Kohana_Cookie {
2014-07-09 13:04:56 +10:00
public static $salt = 'Photo';
2014-06-30 14:22:57 +10:00
}
?>