summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorTheTroll <trolldev@gmail.com>2010-03-01 00:52:30 +0100
committerTheTroll <trolldev@gmail.com>2010-03-01 00:52:30 +0100
commitebffb8ee2d1b8bcf72c6baa743b447007a6c7169 (patch)
treeda4d362f551a14ad07ca017817061074ec428434 /includes
parentc556b64b944a103952ef2b0976063347c973c382 (diff)
downloadistreamdev-ebffb8ee2d1b8bcf72c6baa743b447007a6c7169.tar.gz
istreamdev-ebffb8ee2d1b8bcf72c6baa743b447007a6c7169.tar.bz2
Fixed typo
Diffstat (limited to 'includes')
-rwxr-xr-xincludes/inc_stream.php4
-rwxr-xr-xincludes/inc_video.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/includes/inc_stream.php b/includes/inc_stream.php
index 2804334..5837e22 100755
--- a/includes/inc_stream.php
+++ b/includes/inc_stream.php
@@ -96,10 +96,10 @@ foreach ($quality as $qname => $qparams)
$subdir = $_REQUEST['subdir'];
$subdir = stripslashes($subdir);
print " <input name=\"mediapath\" type=\"hidden\" id=\"mediapath\" value=\"{$mediapath}\" />\r\n";
- print " <input name=\"subdir\" type=\"hidden\" id=\"subdir\" value=\"" . stripslashes(subdir) . "\" />\r\n";
+ print " <input name=\"subdir\" type=\"hidden\" id=\"subdir\" value=\"" .stripslashes($subdir) ."\" />\r\n";
// NO BREAK
case 2:
- print " <input name=\"url\" type=\"hidden\" id=\"url\" value=\"" . stripslashes($name) ."\" />\r\n";
+ print " <input name=\"url\" type=\"hidden\" id=\"url\" value=\"" .stripslashes($name) ."\" />\r\n";
break;
}
print " </form>";
diff --git a/includes/inc_video.php b/includes/inc_video.php
index 399326c..8fc9208 100755
--- a/includes/inc_video.php
+++ b/includes/inc_video.php
@@ -73,7 +73,7 @@ if ($medianame_array[0])
print "<form name=\"$value\" id=\"$value\" method=\"post\" action=\"index.php\">";
print " <input name=\"action\" type=\"hidden\" id=\"action\" value=\"video\"/>";
print " <input name=\"mediapath\" type=\"hidden\" id=\"mediapath\" value=\"{$mediapath}\" />";
- print " <input name=\"subdir\" type=\"hidden\" id=\"subdir\" value=\"" . stripslashes($subdir) . stripslashes($value) . "\" />\r\n";
+ print " <input name=\"subdir\" type=\"hidden\" id=\"subdir\" value=\"" .stripslashes($subdir) .stripslashes($value) ."\" />\r\n";
print "</form>\r\n";
break;
}