Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1399 → Rev 1396

/asterisk-stats/trunk/includes/display.php
78,8 → 78,11
}
 
function display_link($url, $label) {
return '<a href="' . htmlspecialchars($url) . '">'
. ($label ? htmlspecialchars($label) : '&nbsp;') . '</a>';
if(!$label) {
$label = $url;
}
 
return '<A HREF="' . htmlspecialchars($url) . '">' . htmlspecialchars($label) . '</a>';
}
 
class Table {