From 08638ebf6f7e7acff9982a6350652fbb09c9cbe8 Mon Sep 17 00:00:00 2001 From: bergware Date: Sun, 12 Apr 2020 06:07:51 +0200 Subject: [PATCH] Multi cache pool support --- plugins/dynamix/include/Browse.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/dynamix/include/Browse.php b/plugins/dynamix/include/Browse.php index e4c2478af..351cbefab 100644 --- a/plugins/dynamix/include/Browse.php +++ b/plugins/dynamix/include/Browse.php @@ -59,7 +59,7 @@ if ($user) { } $stat = popen("shopt -s dotglob; stat -L -c'%F|%n|%s|%Y' $all",'r'); while (($row = fgets($stat))!==false) { -$row .= $user ? "|{$set[++$i]}" : "|$fix"; + $row .= $user ? "|{$set[++$i]}" : "|$fix"; if (substr($row,0,9)=='directory') $dirs[] = $row; else $files[] = $row; } pclose($stat);