diff options
author | Alib <aliboba@free.fr> | 2010-03-01 10:27:08 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-01 10:27:08 +0100 |
commit | a6569cf8a920f158d1dc2e1130e205d3a5c06323 (patch) | |
tree | bd29d09767c8ffc18233f5cbe774f9370edcf0d9 /includes | |
parent | 2d855c222a2b6ce90714be9e62ffc52632ebe488 (diff) | |
download | istreamdev-a6569cf8a920f158d1dc2e1130e205d3a5c06323.tar.gz istreamdev-a6569cf8a920f158d1dc2e1130e205d3a5c06323.tar.bz2 |
last stripslashes missing
Diffstat (limited to 'includes')
-rwxr-xr-x | includes/inc_streaming.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/inc_streaming.php b/includes/inc_streaming.php index df8a1e3..913f28e 100755 --- a/includes/inc_streaming.php +++ b/includes/inc_streaming.php @@ -36,7 +36,7 @@ print " <center><video id=\"videofeed\" width=\"{$logowidth}\" poster=\"{$logopa print " </ul>\r\n"; print " <ul class=\"pageitem\">\r\n"; -print " <li class=\"textbox\"><span class=\"header\">{$realname}</span><p><strong>{$title}</strong>\r\n"; +print " <li class=\"textbox\"><span class=\"header\">{$realname}</span><p><strong>" .stripslashes($title). "</strong>\r\n"; print " <br>{$desc}</p></li></ul>\r\n"; print " <ul class=\"pageitem\">\r\n"; |