diff options
author | Alib <aliboba@free.fr> | 2010-02-23 11:04:14 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-02-23 11:04:14 +0100 |
commit | 81eb5beedfc4a27b13a0487bf0d0af0e0381f214 (patch) | |
tree | e8ba292635937ac3e132a944b58c51d20975a18d /includes/include.php | |
parent | 630fcec7b7547f0226e3e372d8962d88cceb4fdc (diff) | |
download | istreamdev-81eb5beedfc4a27b13a0487bf0d0af0e0381f214.tar.gz istreamdev-81eb5beedfc4a27b13a0487bf0d0af0e0381f214.tar.bz2 |
corrected timer form not filled
Diffstat (limited to 'includes/include.php')
-rwxr-xr-x | includes/include.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/include.php b/includes/include.php index 4cf2834..2dd59e9 100755 --- a/includes/include.php +++ b/includes/include.php @@ -56,11 +56,11 @@ function selectpage() delete_timer($timer); break; case ("addtimer"): - $channame = $_REQUEST['chan']; - $date = $_REQUEST['date']; - $stime = $_REQUEST['stime']; - $etime = $_REQUEST['etime']; - $desc = $_REQUEST['desc']; + $channame = $_REQUEST['timer_chan']; + $date = $_REQUEST['timer_date']; + $stime = $_REQUEST['timer_starttime']; + $etime = $_REQUEST['timer_endtime']; + $desc = $_REQUEST['timer_name']; $prevtimer = $_REQUEST['prevtimer']; set_timer($channame, $date, $stime, $etime, $desc, $prevtimer); break; |