Enable horizontal merging of slots

This commit is contained in:
Vencislav Atanasov 2016-10-23 00:44:27 +03:00
parent 06080c6249
commit e18f6d1eb7
1 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ function parseData($config, $data) {
$fulltalks .= '<p><strong>' . $event['title'] . ' ' . $fulltalk_spkr . '</strong></p>'; $fulltalks .= '<p><strong>' . $event['title'] . ' ' . $fulltalk_spkr . '</strong></p>';
$fulltalks .= '<p>' . $event['abstract'] . '</p>'; $fulltalks .= '<p>' . $event['abstract'] . '</p>';
$fulltalks .= '<div class="separator"></div></section>'; $fulltalks .= '<div class="separator"></div></section>';
/*
if ($eid === $lastEventId) { if ($eid === $lastEventId) {
array_pop($columns); array_pop($columns);
++$colspan; ++$colspan;
@ -189,7 +189,7 @@ function parseData($config, $data) {
else { else {
$colspan = 1; $colspan = 1;
} }
*/
$columns[] = '<td' . $style . ($colspan > 1 ? ' colspan="' . $colspan . '"' : '') . '>' . $content . '</td>'; $columns[] = '<td' . $style . ($colspan > 1 ? ' colspan="' . $colspan . '"' : '') . '>' . $content . '</td>';
$lastEventId = $eid; $lastEventId = $eid;
} }