fix for speaker links in full talk list
This commit is contained in:
parent
8bbd10724b
commit
728675d6e7
|
@ -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(); ?>
|
||||||
|
|
Loading…
Reference in New Issue