flatpress/admin/panels/entry/admin.entry.commentlist.php
2007-10-30 10:30:07 +00:00

46 lines
667 B
PHP
Executable File

<?php
/**
* edit entry panel
*
* Type:
* Name:
* Date:
* Purpose:
* Input:
*
* @author NoWhereMan <real_nowhereman at users dot sf dot com>
*
*/
class admin_entry_commentlist extends AdminPanelAction {
var $commands = array('delete');
function dodelete($commentid) {
$this->smarty->assign('success',
comment_delete($_GET['entry'], $commentid)? 6 : -6
);
return PANEL_REDIRECT_CURRENT;
}
function main() {
global $fpdb;
if (isset($_GET['entry'])) {
$fpdb->query("id:{$_GET['entry']},fullparse:true");
return 0;
}
return 1;
}
}
?>