summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAlib <aliboba@free.fr>2010-03-19 00:14:23 +0100
committerAlib <aliboba@free.fr>2010-03-19 00:14:23 +0100
commit0e792d5728d393aed562896897d5dee1586cf990 (patch)
tree87848cd10f87a39926ebf0afb2f74cc275dff16b /bin
parent8a15207bd26491292e57c439f482619188f04193 (diff)
downloadistreamdev-0e792d5728d393aed562896897d5dee1586cf990.tar.gz
istreamdev-0e792d5728d393aed562896897d5dee1586cf990.tar.bz2
solved problem with comma in directory
Diffstat (limited to 'bin')
-rwxr-xr-xbin/backend.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/backend.php b/bin/backend.php
index 27efb5a..5cca474 100755
--- a/bin/backend.php
+++ b/bin/backend.php
@@ -106,7 +106,7 @@ switch ($action)
break;
case ("browseFolder"):
- $tree = browseFolder($_REQUEST['path']);
+ $tree = browseFolder(stripslashes($_REQUEST['path']));
print $tree;
break;
@@ -115,4 +115,5 @@ switch ($action)
print $tree;
break;
}
+
?>