<?php defined('SYSPATH') or die('No direct access allowed.');

/**
 * This class overrides Kohana's Cookie
 *
 * @package    Photo
 * @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 = 'Photo';
}
?>