From 24650a1909022a24959489f1508fd877ce6db576 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 24 Oct 2010 09:50:36 +0200 Subject: use gmdate in installer --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.php') diff --git a/install.php b/install.php index 98b729a4d..e555d3f54 100644 --- a/install.php +++ b/install.php @@ -295,7 +295,7 @@ function store_data($d){ $d['policy'] = (int) $d['policy']; // create local.php - $now = date('r'); + $now = gmdate('r'); $output = << Date: Wed, 27 Oct 2010 20:37:31 +0200 Subject: preparations for another release candidate --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.php') diff --git a/install.php b/install.php index e555d3f54..6c03893f5 100644 --- a/install.php +++ b/install.php @@ -46,7 +46,7 @@ $dokuwiki_hash = array( '2008-05-04' => '1e5c42eac3219d9e21927c39e3240aad', '2009-02-14' => 'ec8c04210732a14fdfce0f7f6eead865', '2009-12-25' => '993c4b2b385643efe5abf8e7010e11f4', - '2010-10-07rc' => '7921d48195f4db21b8ead6d9bea801b8' + '2010-10-27rc' => '7921d48195f4db21b8ead6d9bea801b8' ); -- cgit v1.2.3 From eb97dcb864e05302756dcec4320c3c41866e4217 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 7 Nov 2010 17:37:54 +0100 Subject: release preparations --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.php') diff --git a/install.php b/install.php index 6c03893f5..ef3c848a9 100644 --- a/install.php +++ b/install.php @@ -46,7 +46,7 @@ $dokuwiki_hash = array( '2008-05-04' => '1e5c42eac3219d9e21927c39e3240aad', '2009-02-14' => 'ec8c04210732a14fdfce0f7f6eead865', '2009-12-25' => '993c4b2b385643efe5abf8e7010e11f4', - '2010-10-27rc' => '7921d48195f4db21b8ead6d9bea801b8' + '2010-11-07' => '7921d48195f4db21b8ead6d9bea801b8' ); -- cgit v1.2.3 From d1d99bb9528b5a7ca62b74e60314288602cbd5a0 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Wed, 24 Nov 2010 16:33:47 +0100 Subject: check for spl_autoload_register() in install.php See http://forum.dokuwiki.org/post/22120 --- install.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'install.php') diff --git a/install.php b/install.php index ef3c848a9..9b852977f 100644 --- a/install.php +++ b/install.php @@ -460,7 +460,8 @@ function check_functions(){ 'glob header ignore_user_abort ini_get mail mkdir '. 'ob_start opendir parse_ini_file readfile realpath '. 'rename rmdir serialize session_start unlink usleep '. - 'preg_replace file_get_contents htmlspecialchars_decode'); + 'preg_replace file_get_contents htmlspecialchars_decode '. + 'spl_autoload_register'); if (!function_exists('mb_substr')) { $funcs[] = 'utf8_encode'; -- cgit v1.2.3