summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorTheTroll <trolldev@gmail.com>2010-02-23 15:02:48 +0100
committerTheTroll <trolldev@gmail.com>2010-02-23 15:02:48 +0100
commit7d0badfcd9efe46ccb101519a8f9aaac60c96a6c (patch)
treed59acf2f93919638a7ed83447db090ce26c9829b /includes
parent9370aa8b20beaefd123f8cd43185a16232d1bab7 (diff)
downloadistreamdev-7d0badfcd9efe46ccb101519a8f9aaac60c96a6c.tar.gz
istreamdev-7d0badfcd9efe46ccb101519a8f9aaac60c96a6c.tar.bz2
Fixed no timer case
Diffstat (limited to 'includes')
-rwxr-xr-xincludes/inc_vdr.php5
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;
}