mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-10-31 16:06:24 +01:00 
			
		
		
		
	 84d502bf10
			
		
	
	84d502bf10
	
	
	
		
			
			Replace $account_logged->getPlayers() with getPlayersList() $_REQUEST['todo'] -> $_REQUEST['post'] $guild_errors -> $errors
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Remove forum post
 | |
|  *
 | |
|  * @package   MyAAC
 | |
|  * @author    Gesior <jerzyskalski@wp.pl>
 | |
|  * @author    Slawkens <slawkens@gmail.com>
 | |
|  * @copyright 2019 MyAAC
 | |
|  * @link      https://my-aac.org
 | |
|  */
 | |
| 
 | |
| use MyAAC\Forum;
 | |
| 
 | |
| defined('MYAAC') or die('Direct access not allowed!');
 | |
| 
 | |
| $ret = require __DIR__ . '/base.php';
 | |
| if ($ret === false) {
 | |
| 	return;
 | |
| }
 | |
| 
 | |
| if(!$logged) {
 | |
| 	echo 'You are not logged in. <a href="' . getLink('account/manage') . '?redirect=' . urlencode(getLink('forum')) . '">Log in</a> to post on the forum.<br /><br />';
 | |
| 	return;
 | |
| }
 | |
| 
 | |
| csrfProtect();
 | |
| 
 | |
| if(Forum::isModerator()) {
 | |
| 	$id = (int) ($_POST['id'] ?? 0);
 | |
| 	$post = $db->query("SELECT `id`, `first_post`, `section` FROM `" . FORUM_TABLE_PREFIX . "forum` WHERE `id` = ".$id." LIMIT 1")->fetch();
 | |
| 
 | |
| 	if($post && $post['id'] == $id && Forum::hasAccess($post['section'])) {
 | |
| 		if($post['id'] == $post['first_post']) {
 | |
| 			$db->query("DELETE FROM `" . FORUM_TABLE_PREFIX . "forum` WHERE `first_post` = ".$post['id']);
 | |
| 			header('Location: ' . getForumBoardLink($post['section']));
 | |
| 		}
 | |
| 		else {
 | |
| 			$post_page = $db->query("SELECT COUNT(`" . FORUM_TABLE_PREFIX . "forum`.`id`) AS posts_count FROM `players`, `" . FORUM_TABLE_PREFIX . "forum` WHERE `players`.`id` = `" . FORUM_TABLE_PREFIX . "forum`.`author_guid` AND `" . FORUM_TABLE_PREFIX . "forum`.`id` < ".$id." AND `" . FORUM_TABLE_PREFIX . "forum`.`first_post` = ".(int) $post['first_post'])->fetch();
 | |
| 			$_page = (int) ceil($post_page['posts_count'] / setting('core.forum_threads_per_page')) - 1;
 | |
| 			$db->query("DELETE FROM `" . FORUM_TABLE_PREFIX . "forum` WHERE `id` = ".$post['id']);
 | |
| 			header('Location: ' . getForumThreadLink($post['first_post'], $_page));
 | |
| 		}
 | |
| 	}
 | |
| 	else {
 | |
| 		$errors[] = 'Post with ID ' . $id . ' does not exist.';
 | |
| 		displayErrorBoxWithBackButton($errors, getLink('forum'));
 | |
| 	}
 | |
| }
 | |
| else {
 | |
| 	$errors[] = 'You are not logged in or you are not moderator.';
 | |
| 	displayErrorBoxWithBackButton($errors, getLink('forum'));
 | |
| }
 |