View file sots-syet-livebook/forum/inc/set_them_form.php

File size: 679B
<?
if (isset($_GET['act']) && $_GET['act']=='post_delete' && (user_access('forum_post_ed') || (isset($user) && $ank2['id']==$user['id'])))
{
echo "<input value=\"Удалить выбранные посты\" type=\"submit\" /> \n";
echo "<a href='/forum/$forum[id]/$razdel[id]/$them[id]/'><img src='/style/icons/delete.gif' alt='*'> Отмена</a> \n";
echo "</form>\n";
}

if ((!isset($_GET['act']) || $_GET['act']!='post_delete') && (user_access('forum_post_ed') || (isset($user) && $ank2['id']==$user['id']))){
echo "<a class='link' href='/forum/$forum[id]/$razdel[id]/$them[id]/?act=post_delete'><i class='fas fa-trash-alt'></i> Чистка темы</a>";
}
?>