summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheTroll <trolldev@gmail.com>2010-02-23 14:27:39 +0100
committerTheTroll <trolldev@gmail.com>2010-02-23 14:27:39 +0100
commit9370aa8b20beaefd123f8cd43185a16232d1bab7 (patch)
tree5d51314396e1c70ff86ef0097be381ed6a62fa09
parentf53d604d4c363ff1336f9ff2faccefced45b2108 (diff)
downloadistreamdev-9370aa8b20beaefd123f8cd43185a16232d1bab7.tar.gz
istreamdev-9370aa8b20beaefd123f8cd43185a16232d1bab7.tar.bz2
Added \r\n
-rwxr-xr-xincludes/inc_vdr.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/includes/inc_vdr.php b/includes/inc_vdr.php
index 7f1f408..3ba9edd 100755
--- a/includes/inc_vdr.php
+++ b/includes/inc_vdr.php
@@ -318,24 +318,24 @@ function vdrlisttimers()
list($type, $channame, $date, $starthour, $endhour, $desc) = vdrgettimerinfo($timernum);
print "<li class=\"menu\">";
- print " <a href=\"javascript:sendForm('timer {$timernum}')\">";
+ print " <a href=\"javascript:sendForm('timer {$timernum}')\">\r\n";
if ($type & 0x8)
- print " <img alt=\"list\" src=\"images/pictos/timerrec.png\" />";
+ print " <img alt=\"list\" src=\"images/pictos/timerrec.png\" />\r\n";
else if ($type & 0x1)
- print " <img alt=\"list\" src=\"images/pictos/timeron.png\" />";
+ print " <img alt=\"list\" src=\"images/pictos/timeron.png\" />\r\n";
else
- print " <img alt=\"list\" src=\"images/pictos/timeroff.png\" />";
+ print " <img alt=\"list\" src=\"images/pictos/timeroff.png\" />\r\n";
- print " <span class=\"name\">{$date}: {$desc}</span><span class=\"arrow\"></span>";
+ print " <span class=\"name\">{$date}: {$desc}</span><span class=\"arrow\"></span>\r\n";
- print " </a>";
- print "</li>";
+ print " </a>\r\n";
+ print "</li>\r\n";
- print "<form name=\"timer {$timernum}\" id=\"timer {$timernum}\" method=\"post\" action=\"index.php\">";
- print " <input name=\"action\" type=\"hidden\" id=\"action\" value=\"edittimer\"/>";
- print " <input name=\"timer\" type=\"hidden\" id=\"timer\" value=\"{$timernum}\" />";
- print "</form>";
+ print "<form name=\"timer {$timernum}\" id=\"timer {$timernum}\" method=\"post\" action=\"index.php\">\r\n";
+ print " <input name=\"action\" type=\"hidden\" id=\"action\" value=\"edittimer\"/>\r\n";
+ print " <input name=\"timer\" type=\"hidden\" id=\"timer\" value=\"{$timernum}\" />\r\n";
+ print "</form>\r\n";
}
}