Fixed reverse logic of mchat_message_top

This commit is contained in:
kasimi
2015-12-13 18:06:40 +01:00
parent d42e81cd3f
commit 9fd70fe60b
3 changed files with 8 additions and 8 deletions

View File

@@ -51,8 +51,8 @@
<dl> <dl>
<dt><label for="mchat_message_top">{L_MCHAT_MESSAGE_TOP}{L_COLON}</label><br /> <dt><label for="mchat_message_top">{L_MCHAT_MESSAGE_TOP}{L_COLON}</label><br />
<span>{L_MCHAT_MESSAGE_TOP_EXPLAIN}</span></dt> <span>{L_MCHAT_MESSAGE_TOP_EXPLAIN}</span></dt>
<dd><label><input type="radio" class="radio" name="mchat_message_top" value="1"<!-- IF MCHAT_MESSAGE_TOP --> id="mchat_message_top" checked="checked"<!-- ENDIF --> /> {L_MCHAT_BOTTOM}</label> <dd><label><input type="radio" class="radio" name="mchat_message_top" value="1"<!-- IF MCHAT_MESSAGE_TOP --> id="mchat_message_top" checked="checked"<!-- ENDIF --> /> {L_MCHAT_TOP}</label>
<label><input type="radio" class="radio" name="mchat_message_top" value="0"<!-- IF not MCHAT_MESSAGE_TOP --> id="mchat_message_top" checked="checked"<!-- ENDIF --> /> {L_MCHAT_TOP}</label></dd> <label><input type="radio" class="radio" name="mchat_message_top" value="0"<!-- IF not MCHAT_MESSAGE_TOP --> id="mchat_message_top" checked="checked"<!-- ENDIF --> /> {L_MCHAT_BOTTOM}</label></dd>
</dl> </dl>
<dl> <dl>
<dt><label for="mchat_new_posts">{L_MCHAT_NEW_POSTS}{L_COLON}</label><br /> <dt><label for="mchat_new_posts">{L_MCHAT_NEW_POSTS}{L_COLON}</label><br />

View File

@@ -427,9 +427,9 @@ class render_helper
$rows = $this->db->sql_fetchrowset($result); $rows = $this->db->sql_fetchrowset($result);
$this->db->sql_freeresult($result); $this->db->sql_freeresult($result);
// Reverse the array wanting messages appear in reverse // Reverse the array wanting messages appear in reverse
if($this->config['mchat_message_top']) if(!$this->config['mchat_message_top'])
{ {
$rows = array_reverse($rows); $rows = array_reverse($rows);
} }
foreach($rows as $row) foreach($rows as $row)
@@ -984,9 +984,9 @@ class render_helper
$rows = $this->db->sql_fetchrowset($result); $rows = $this->db->sql_fetchrowset($result);
$this->db->sql_freeresult($result); $this->db->sql_freeresult($result);
if($this->config['mchat_message_top']) if(!$this->config['mchat_message_top'])
{ {
$rows = array_reverse($rows, true); $rows = array_reverse($rows, true);
} }
foreach($rows as $row) foreach($rows as $row)

View File

@@ -6,9 +6,9 @@
<!-- INCLUDEJS jquery.titlealert.min.js --> <!-- INCLUDEJS jquery.titlealert.min.js -->
<!-- INCLUDEJS jquery_cookie_mini.js --> <!-- INCLUDEJS jquery_cookie_mini.js -->
<!-- IF MCHAT_MESSAGE_TOP --> <!-- IF MCHAT_MESSAGE_TOP -->
<!-- INCLUDEJS mchat_ajax_mini.js -->
<!-- ELSE -->
<!-- INCLUDEJS mchat_ajax_mini_top.js --> <!-- INCLUDEJS mchat_ajax_mini_top.js -->
<!-- ELSE -->
<!-- INCLUDEJS mchat_ajax_mini.js -->
<!-- ENDIF --> <!-- ENDIF -->
<!-- INCLUDEJS jquery-1.8.3.min.js --> <!-- INCLUDEJS jquery-1.8.3.min.js -->
<!-- INCLUDEJS jquery.maxlength.min.js --> <!-- INCLUDEJS jquery.maxlength.min.js -->