File: /home/slfopp7cb1df/public_html/sitepacket.com/system/app/Views/messages/chat/message_items.php
<?php
foreach ($replies as $reply_info) {
echo view("messages/chat/single_message", array("reply_info" => $reply_info));
}
if ($is_online) {
?>
<script class="temp-script">
$("#js-active-chat-online-icon").removeClass("hide");
$(".temp-script").remove();
$("#is_user_online").val("1");
</script>
<?php
} else {
?>
<script class="temp-script">
$("#js-active-chat-online-icon").addClass("hide");
$(".temp-script").remove();
$("#is_user_online").val("0");
</script>
<?php
}