1<?php
2/*
3 * e107 website system
4 *
5 * Copyright (C) 2008-2017 e107 Inc (e107.org)
6 * Released under the terms and conditions of the
7 * GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
8 *
9 * Poll plugin main page display
10 *
11 * $URL$
12 * $Id$
13 */
14
15require_once('../../class2.php');
16if (!e107::isInstalled('poll'))
17{
18	e107::redirect();
19	exit;
20}
21
22require_once(HEADERF);
23
24require(e_PLUGIN.'poll/poll_menu.php');
25
26
27require_once(FOOTERF);
28exit;
29
30
31