| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- /* $Id: readmsg.php 2893 2007-04-14 13:20:30Z b4rt $ */
- /*******************************************************************************
- LICENSE
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License (GPL)
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- To read the license please visit http://www.gnu.org/copyleft/gpl.html
- *******************************************************************************/
- // prevent direct invocation
- if ((!isset($cfg['user'])) || (isset($_REQUEST['cfg']))) {
- @ob_end_clean();
- @header("location: ../../index.php");
- exit();
- }
- /******************************************************************************/
- // common functions
- require_once('inc/functions/functions.common.php');
- // delete
- if (isset($_REQUEST['delete'])) {
- $delete = tfb_getRequestVar('delete');
- if (!empty($delete))
- DeleteMessage($delete);
- @header("location: index.php?iid=readmsg");
- exit();
- }
- // init template-instance
- tmplInitializeInstance($cfg["theme"], "page.readmsg.tmpl");
- if (isset($_REQUEST['mid'])) {
- $mid = tfb_getRequestVar('mid');
- list($from_user, $message, $ip, $time, $isnew, $force_read) = GetMessage($mid);
- if (!empty($from_user) && $isnew == 1) {
- // We have a Message that is being seen
- // Mark it as NOT new.
- MarkMessageRead($mid);
- }
- $message = check_html($message, "a");
- $message = html_entity_decode($message);
- $message = str_replace("\n", "<br>", $message);
- if (IsUser($from_user))
- $tmpl->setvar('IsUser', 1);
- $tmpl->setvar('from_user', $from_user);
- $tmpl->setvar('message', $message);
- $tmpl->setvar('mid', $mid);
- } else {
- // read and display all messages in a list.
- $inx = 0;
- $sql = "SELECT mid, from_user, message, IsNew, ip, time, force_read FROM tf_messages WHERE to_user=".$db->qstr($cfg["user"])." ORDER BY time";
- $result = $db->Execute($sql);
- if ($db->ErrorNo() != 0) dbError($sql);
- $message_list = array();
- while (list($mid, $from_user, $message, $new, $ip, $time, $force_read) = $result->FetchRow()) {
- $mail_image = ($new == 1)
- ? "themes/".$cfg['theme']."/images/new_message.gif"
- : "themes/".$cfg['theme']."/images/old_message.gif";
- $display_message = check_html($message, "nohtml");
- if (strlen($display_message) >= 40)
- $display_message = substr($display_message, 0, 39)."...";
- // No, let them reply or delete it
- array_push($message_list, array (
- 'mid' => $mid,
- 'mail_image' => $mail_image,
- 'from_user' => $from_user,
- 'display_message' => $display_message,
- 'date2' => date($cfg['_DATETIMEFORMAT'], $time),
- 'force_read' => $force_read,
- 'IsUser2' => (IsUser($from_user)) ? 1 : 0,
- )
- );
- $inx++;
- }
- if ($inx == 0) {
- $tmpl->setvar('no_inx', 1);
- $tmpl->setvar('_NORECORDSFOUND', $cfg['_NORECORDSFOUND']);
- } else {
- $tmpl->setvar('no_inx', 0);
- $tmpl->setloop('message_list', $message_list);
- }
- $tmpl->setvar('_SENDMESSAGETO', $cfg['_SENDMESSAGETO']);
- $tmpl->setvar('_COMPOSE', $cfg['_COMPOSE']);
- $userList = array();
- for ($inx = 0; $inx < sizeof($cfg['users']); $inx++)
- array_push($userList, array('user' => htmlentities($cfg['users'][$inx], ENT_QUOTES)));
- $tmpl->setloop('messageList_user', $userList);
- }
- // set vars
- $tmpl->setvar('date1', date($cfg['_DATETIMEFORMAT'], $time));
- //
- $tmpl->setvar('_FROM', $cfg['_FROM']);
- $tmpl->setvar('_REPLY', $cfg['_REPLY']);
- $tmpl->setvar('_DELETE', $cfg['_DELETE']);
- $tmpl->setvar('_DATE', $cfg['_DATE']);
- $tmpl->setvar('_ADMIN', $cfg['_ADMIN']);
- $tmpl->setvar('_MESSAGE', $cfg['_MESSAGE']);
- $tmpl->setvar('_RETURNTOMESSAGES', $cfg['_RETURNTOMESSAGES']);
- //
- $tmpl->setvar('table_admin_border', $cfg["table_admin_border"]);
- //
- tmplSetTitleBar($cfg["pagetitle"].' - '.$cfg['_MESSAGES']);
- tmplSetFoot();
- tmplSetIidVars();
- // parse template
- $tmpl->pparse();
- ?>
|