From 2a341058b16fabea683fd905d94fce9668ab4f4e Mon Sep 17 00:00:00 2001 From: Shadow Date: Thu, 14 Nov 2013 13:53:48 +0200 Subject: [PATCH] Update process.php --- install/process.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install/process.php b/install/process.php index ba2fbc65..3b10b91c 100644 --- a/install/process.php +++ b/install/process.php @@ -38,6 +38,8 @@ class Process { $text = preg_replace("'%SERVERNAME%'", $_POST['servername'], $text); $text = preg_replace("'%SSTARTDATE%'", $_POST['start_date'], $text); $text = preg_replace("'%SSTARTTIME%'", $_POST['start_time'], $text); + $tz = explode(",",$_POST['tzone']); + $text = preg_replace("'%STIMEZONE%'", $tz[1], $text); $text = preg_replace("'%LANG%'", $_POST['lang'], $text); $text = preg_replace("'%SPEED%'", $_POST['speed'], $text); $text = preg_replace("'%INCSPEED%'", $_POST['incspeed'], $text);