2021-03-11 16:51:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once __DIR__ .'/bootstrap.php';
|
|
|
|
|
2021-04-04 14:59:09 +00:00
|
|
|
// Support the old Dragonpolls links
|
|
|
|
if (isset($_GET['poll'])) {
|
|
|
|
redirect('view_poll.php?id='.$_GET['poll']);
|
|
|
|
}
|
2021-03-27 19:37:17 +00:00
|
|
|
echo get_page_header();
|
2021-04-04 10:04:00 +00:00
|
|
|
echo get_page_footer();
|