• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows [Modern AAC] Forum not showing lines/enter/br

We bottlenecked the port 80, so there is more bandwitdh left for 7272.
Once its in the players cache the website is a bit more userfriendly :p

We will move our server soon to a dedicated server (in a datacenter).

The problem is, its not showing enters (empty lines between the text), also known as <br/>.
I guess this has something to do with the combination of TinyMCE and ModernAAC.
 
open system/application/views/forum_view_thread
and there should be something like this
PHP:
echo "<div class='forumPostText'>".strip_tags($post['text'])."</div>";
and change it to
PHP:
echo "<div class='forumPostText'>".nl2br(strip_tags($post['text']))."</div>";
 
Back
Top