-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoll.php
37 lines (35 loc) · 828 Bytes
/
poll.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?
/*
+--------------------------------------------------------------------------
| MkPortal
| ========================================
| by Meo aka Luponero <Amedeo de longis>
|
| (c) 2004 mkportal.it
| http://www.mkportal.it
| Email: [email protected]
|
+---------------------------------------------------------------------------
|
| > MKPortal
| > Written By Amedeo de longis
| > Date started: 9.2.2004
|
+--------------------------------------------------------------------------
*/
$content = "";
$poll_active = $this->config['poll_active'];
if ($poll_active) {
$content = $mklib_board->get_poll_active($poll_active);
}
if (!$content) {
$content = "
<tr>
<td class=\"tdblock\" align=\"center\">
{$this->lang['no_activepoll']}
</td>
</tr>
";
}
unset ($poll_active);
?>