summaryrefslogtreecommitdiff
path: root/public_html/class/vfsdata.php
diff options
context:
space:
mode:
authorHorus32014-09-22 20:28:25 +0200
committerHorus32014-09-22 20:28:25 +0200
commit9e1b66f564659de67f8eb6c44b12ef0050c31970 (patch)
treeca5e661962ec9168bb6edc8de0a5e911c96ecfcb /public_html/class/vfsdata.php
parent9c814f9b2859ea41ee18230a32008bb757d10ef3 (diff)
downloadvfs-9e1b66f564659de67f8eb6c44b12ef0050c31970.tar.gz
fixed bugsHEADmaster
Diffstat (limited to 'public_html/class/vfsdata.php')
-rw-r--r--public_html/class/vfsdata.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/public_html/class/vfsdata.php b/public_html/class/vfsdata.php
index 92d9745..05fced6 100644
--- a/public_html/class/vfsdata.php
+++ b/public_html/class/vfsdata.php
@@ -62,7 +62,7 @@ class vfsdata {
$length = $tmp_length;
- for ( $i=0; $i<$length, $i++ ) {
+ for ( $i=0; $i<$length; $i++ ) {
$sql = $vfsdb->prepare("SELECT id, parent FROM files WHERE owner = %d AND parent = %d AND name = %s " . $visibility . ";", $this->userid, $parentdir, $folder[$i]);
$parentdir_db = $vfsdb->doQuery($sql);