/Websvn/include/utils.inc |
---|
61,11 → 61,11 |
if ($dir) |
{ |
$vars["curdirlinks"] .= "[<b>".$subs[$n]."</b>/]"; |
$vars["curdirlinks"] .= "[<b>".html_entity_decode($subs[$n])."</b>/]"; |
} |
else |
{ |
$vars["curdirlinks"] .= "[<b>".$subs[$n]."</b>]"; |
$vars["curdirlinks"] .= "[<b>".html_entity_decode($subs[$n])."</b>]"; |
} |
} |
/Websvn/listing.php |
---|
190,7 → 190,7 |
if (($level != $limit) && ($isDir)) |
{ |
if (!strcmp(htmlentities($subs[$level + 1],ENT_QUOTES)."/", $file)) |
if (!strcmp($subs[$level + 1]."/", $file)) |
{ |
$listing = showDirFiles($svnrep, $subs, $level + 1, $limit, $rev, $listing, $index); |
$index = count($listing); |