Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1381 → Rev 1382

/asterisk-stats/trunk/includes/display.php
141,6 → 141,12
if($cell['class']) {
$output .= ' class="' . htmlspecialchars($cell['class']) . '"';
}
if($cell['colspan']) {
$output .= " colspan=\"" . htmlspecialchars($cell['colspan']) . "\"";
}
if($cell['rowspan']) {
$output .= " rowspan=\"" . htmlspecialchars($cell['rowspan']) . "\"";
}
if($cell['comment']) {
$output .= " title=\"" . htmlspecialchars($cell['comment']) . "\"";
}