Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1396 → Rev 1399

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