3
try
find in popup.php
$xoopsTpl = new XoopsTpl();
add right after:
global $xoopsUser;
if (is_object($xoopsUser)
{
$is_user = 1;
$xoopsTpl->assign('is_user', $is_user);
then near the end of file, find
$xoopsTpl->assign("maintheme", xoops_getcss($xoopsConfig['theme_set']));
add right Before:
}
else
{
$is_user = 0;
$xoopsTpl->assign('is_user', $is_user);
$xoopsTpl->assign('need_login', 'You must be logged in to play radio');
}
then in the template debaser_radiopopup.html
find:
<table class="outer"><tr><td class="odd">
add right Before:
<{if $is_user !== 1}>
find
td>tr>table>
add right After
<{else}>
<div><{$need_login}>div>
<{/if}>
not tried it at all, but worth a try