1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-14 01:19:44 +01:00

missing core function added to install routine

This commit is contained in:
secretr 2010-10-27 11:41:54 +00:00
parent df516f91c9
commit 7287f055a1

View File

@ -190,7 +190,20 @@ $e_install->template->SetTag("files_dir_http", e_FILE_ABS);
$e_install->renderPage();
/**
* Set Cookie
* @param string $name
* @param string $value
* @param integer $expire seconds
* @param string $path
* @param string $domain
* @param boolean $secure
* @return void
*/
function cookie($name, $value, $expire=0, $path = e_HTTP, $domain = '', $secure = 0)
{
setcookie($name, $value, $expire, $path, $domain, $secure);
}
class e_install
{