o: ActiveSupport::Cache::Entry :@compressedF:@value"—"‘
| Websvn/listing.php | ||
|---|---|---|
| 190 | 190 |
|
| 191 | 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 | 195 |
$listing = showDirFiles($svnrep, $subs, $level + 1, $limit, $rev, $listing, $index); |
| 196 | 196 |
$index = count($listing); |
| Websvn/include/utils.inc | ||
|---|---|---|
| 61 | 61 |
|
| 62 | 62 |
if ($dir) |
| 63 | 63 |
{
|
| 64 |
$vars["curdirlinks"] .= "[<b>".$subs[$n]."</b>/]";
|
|
| 64 |
$vars["curdirlinks"] .= "[<b>".html_entity_decode($subs[$n])."</b>/]";
|
|
| 65 | 65 |
} |
| 66 | 66 |
else |
| 67 | 67 |
{
|
| 68 |
$vars["curdirlinks"] .= "[<b>".$subs[$n]."</b>]";
|
|
| 68 |
$vars["curdirlinks"] .= "[<b>".html_entity_decode($subs[$n])."</b>]";
|
|
| 69 | 69 |
} |
| 70 | 70 |
} |
| 71 | 71 |
|