fix for speaker links in full talk list

This commit is contained in:
Vasil Kolev 2015-10-21 10:36:48 +03:00 committed by Openfest
parent 8bbd10724b
commit 728675d6e7
1 changed files with 1 additions and 9 deletions

View File

@ -68,16 +68,8 @@ $content = require __DIR__ . DIRECTORY_SEPARATOR . 'schedule' . DIRECTORY_SEPARA
</table> </table>
<?php <?php
foreach ($content['fulltalks'] as $line) { foreach ($content['fulltalks'] as $line) {
echo $line, PHP_EOL; echo str_replace('SPKURL', $url, $line), PHP_EOL;
} }
/*
foreach ($content['gspk'] as $line) {
echo $line, PHP_EOL;
}
foreach ($content['fspk'] as $line) {
echo $line, PHP_EOL;
}*/
?> ?>
</div> </div>
<?php get_sidebar(); ?> <?php get_sidebar(); ?>