diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-23 15:02:48 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-23 15:02:48 +0100 |
commit | 7d0badfcd9efe46ccb101519a8f9aaac60c96a6c (patch) | |
tree | d59acf2f93919638a7ed83447db090ce26c9829b /includes | |
parent | 9370aa8b20beaefd123f8cd43185a16232d1bab7 (diff) | |
download | istreamdev-7d0badfcd9efe46ccb101519a8f9aaac60c96a6c.tar.gz istreamdev-7d0badfcd9efe46ccb101519a8f9aaac60c96a6c.tar.bz2 |
Fixed no timer case
Diffstat (limited to 'includes')
-rwxr-xr-x | includes/inc_vdr.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/includes/inc_vdr.php b/includes/inc_vdr.php index 3ba9edd..4158e2e 100755 --- a/includes/inc_vdr.php +++ b/includes/inc_vdr.php @@ -301,8 +301,11 @@ function vdrlisttimers() if (gettype($timers) == "string") { - if ($timers == "") + if (!is_numeric(substr($timers,0,1))) + { + print "<li class=\"textbox\"><p>{$timers}</p></li>\r\n"; return; + } else $timersarray[] = $timers; } |