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:
parent
df516f91c9
commit
7287f055a1
15
install_.php
15
install_.php
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user