dragonpolls/index.php

11 lines
210 B
PHP
Raw Normal View History

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();
echo get_page_footer();