Subversion-Projekte lars-tiefland.ci

Revision

Revision 2049 | Revision 2242 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 2049 Revision 2107
Zeile 65... Zeile 65...
65
	 * @param	string	the cookie prefix
65
	 * @param	string	the cookie prefix
66
	 * @param	bool	true makes the cookie secure
66
	 * @param	bool	true makes the cookie secure
67
	 * @param	bool	true makes the cookie accessible via http(s) only (no javascript)
67
	 * @param	bool	true makes the cookie accessible via http(s) only (no javascript)
68
	 * @return	void
68
	 * @return	void
69
	 */
69
	 */
70
	function set_cookie($name, $value = '', $expire = '', $domain = '', $path = '/', $prefix = '', $secure = FALSE, $httponly = FALSE)
70
	function set_cookie($name, $value = '', $expire = '', $domain = '', $path = '/', $prefix = '', $secure = NULL, $httponly = NULL)
71
	{
71
	{
72
		// Set the config file options
72
		// Set the config file options
73
		get_instance()->input->set_cookie($name, $value, $expire, $domain, $path, $prefix, $secure, $httponly);
73
		get_instance()->input->set_cookie($name, $value, $expire, $domain, $path, $prefix, $secure, $httponly);
74
	}
74
	}
75
}
75
}