Rev 139 Rev 152
Line 188... Line 188...
188 $loop++; 188 $loop++;
189 $last_index = $index; 189 $last_index = $index;
190 190
191 if (($level != $limit) && ($isDir)) 191 if (($level != $limit) && ($isDir))
192 { 192 {
193 if (!strcmp(htmlentities($subs[$level + 1],ENT_QUOTES)."/", $file)) 193 if (!strcmp($subs[$level + 1]."/", $file))
194 { 194 {
195 $listing = showDirFiles($svnrep, $subs, $level + 1, $limit, $rev, $listing, $index); 195 $listing = showDirFiles($svnrep, $subs, $level + 1, $limit, $rev, $listing, $index);
196 $index = count($listing); 196 $index = count($listing);
197 } 197 }
198 } 198 }