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

/**
 * This class overrides Kohana's Cookie
 *
 * @package    PLA/Modifications
 * @category   Classes
 * @category   Helpers
 * @author     Deon George
 * @copyright  (c) 2010 Deon George
 * @license    http://dev.phpldapadmin.org/license.html
 */
class Cookie extends Kohana_Cookie {
	public static $salt = 'PLA';
}
?>