(root)/forums/delete-category-do.php - Rev 334
  
  
    Go to most recent revision |
    Blame |
    Compare with Previous |
    Last modification |
    View Log
    | RSS feed
  
  
<?php
require '../_taios.php';
$page = new Taios_Page('Delete Category', '../');
$page->checkLoggedIn();
$id = $page->getGetID();
if ($page->isUserAdmin($page->getLoggedInUser()))
{
    $page->query('DELETE FROM ForumCategories WHERE ID = ' . $id);
    $page->redirect('index.php');
}
else
{
    $page->drawError('You do not have permission to access this page.');
}
?>