* moved forum.new_post to twig templates

* moved forum functions to Forum class
* minimum PHP version to install AAC is now 5.3.0 cause of Anonymous functions used by Twig
This commit is contained in:
slawkens
2017-10-18 10:29:54 +02:00
parent bbae0c3ade
commit 1850ef70d8
7 changed files with 185 additions and 132 deletions

View File

@@ -105,9 +105,9 @@ if(Forum::canPost($account_logged))
echo '<br/>You are not an author of this post.';
}
else
echo '<br/>Post with ID '.$post_id.' doesn\'t exist.';
echo "<br/>Post with ID " . $post_id . " doesn't exist.";
}
else
echo '<br/>Your account is banned, deleted or you don\'t have any player with level '.$config['forum_level_required'].' on your account. You can\'t post.';
echo "<br/>Your account is banned, deleted or you don't have any player with level " . $config['forum_level_required'] . " on your account. You can't post.";
?>