Файл: siteadmin/modules/albums/comments.php
Строк: 63
<?php
defined('_VALID') or die('Restricted Access!');
require $config['BASE_DIR']. '/classes/pagination.class.php';
Auth::checkAdmin();
$remove = NULL;
$PID = ( isset($_GET['PID']) && is_numeric($_GET['PID']) ) ? intval(trim($_GET['PID'])) : NULL;
if ( isset($_GET['a']) && $_GET['a'] == 'delete' ) {
$COMID = ( isset($_GET['COMID']) && is_numeric($_GET['COMID']) ) ? intval(trim($_GET['COMID'])) : NULL;
if ( $COMID ) {
$sql = "UPDATE photos SET total_comments = total_comments-1 WHERE PID = " .$PID. " LIMIT 1";
$conn->execute($sql);
$sql = "DELETE FROM photo_comments WHERE CID = " .$COMID. " LIMIT 1";
$conn->execute($sql);
if ( $conn->Affected_Rows() == 1 ) {
$messages[] = 'Comment deleted successfully!';
} else {
$errors[] = 'Failed to delete comment! Invalid comment id!?';
}
} else {
$errors[] = 'Invalid comment id or not set!';
}
$remove = '&a=delete&COMID=' .$COMID;
}
$sql = "SELECT count(CID) AS total_comments FROM photo_comments WHERE PID = " .$PID;
$rs = $conn->execute($sql);
$total_comments = $rs->fields['total_comments'];
$pagination = new Pagination(20);
$limit = $pagination->getLimit($total_comments);
$paging = $pagination->getAdminPagination($remove);
$sql = "SELECT c.*, u.username FROM photo_comments AS c, signup AS u
WHERE c.PID = " .$PID. " AND c.UID = u.UID LIMIT " .$limit;
$rs = $conn->execute($sql);
$comments = $rs->getrows();
$smarty->assign('PID', $PID);
$smarty->assign('comments', $comments);
$smarty->assign('total_comments', $total_comments);
$smarty->assign('paging', $paging);
?>