Subversion Repositories PHPX

Compare Revisions

Last modification

Ignore whitespace Rev 5 → Rev 6

/trunk/features.class.php
355,7 → 355,7
{
$url = $this->list->resolveURN($vInfo['urn']);
$vNumber = '<a href="' . $url . '">' . $vNumber
. ($section ? $section : '') . '</a>';
. ($section ? $section : '') . '</a>';
}
}
else if ($section)
363,12 → 363,12
$vNumber .= $section;
}
 
return $vNumber === '-' ? '<span title="No">&#8722;</span>' : $vNumber;
$vInfo = $vNumber;
}
else
{
return $vInfo === '-' ? '<span title="No">&#8722;</span>' : $vInfo;
}
 
return ($vInfo === '-')
? '<span title="Not supported">&#8722;</span>'
: $vInfo;
}
protected static function shl($s)