mirror of
https://github.com/e107inc/e107.git
synced 2025-08-05 14:17:49 +02:00
missing core function added to install routine
This commit is contained in:
15
install_.php
15
install_.php
@@ -190,7 +190,20 @@ $e_install->template->SetTag("files_dir_http", e_FILE_ABS);
|
|||||||
|
|
||||||
$e_install->renderPage();
|
$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
|
class e_install
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user