1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-10 12:34:49 +02:00
Files
php-e107/e107_plugins/forum/e_meta.php
2019-10-02 13:19:50 +02:00

27 lines
544 B
PHP

<?php
if (!defined('e107_INIT')) { exit; }
// #647 - temporary solution until a global/common clone method is created which replaces duplicateHTML()
if(!e107::isInstalled('poll'))
{
return;
}
if(e107::getPlugPref('forum', 'poll') != '255')
{
$poll_active = true;
}
if(defset('e_CURRENT_PLUGIN') == "forum" && e107::isInstalled('poll') && $poll_active)
{
e107::js("footer-inline", "
$('#addoption').click(function () {
$('#poll_answer').clone().appendTo('#pollsection').find('input[type=text]').val('');
});
");
}
?>