diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 14:49:38 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 14:49:38 -0700 |
| commit | fe58901b811f0ab26e8f93a9563fb93bc98e4c19 (patch) | |
| tree | 035648bdef5c41f0e05929edc543692837fec40a /httemplate/edit/process/sched_item.html | |
| parent | 26484e261d7a6bd833d041b417b60e63db19edf7 (diff) | |
scalar cgi param
Diffstat (limited to 'httemplate/edit/process/sched_item.html')
| -rw-r--r-- | httemplate/edit/process/sched_item.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/edit/process/sched_item.html b/httemplate/edit/process/sched_item.html index 7731a35b9..335f81360 100644 --- a/httemplate/edit/process/sched_item.html +++ b/httemplate/edit/process/sched_item.html @@ -21,8 +21,8 @@ foreach my $wday (0..6) { push @sched_avail, new FS::sched_avail { 'itemnum' => $itemnum, 'wday' => $wday, - 'stime' => $cgi->param("sched_avail$wday".'_stime'), - 'etime' => $cgi->param("sched_avail$wday".'_etime'), + 'stime' => scalar($cgi->param("sched_avail$wday".'_stime')), + 'etime' => scalar($cgi->param("sched_avail$wday".'_etime')), }; } } |
