// // ------------------------------------------------------------------------ // // This program is free software; you can redistribute it and/or modify // // it under the terms of the GNU General Public License as published by // // the Free Software Foundation; either version 2 of the License, or // // (at your option) any later version. // // // // You may not change or alter any portion of this comment or credits // // of supporting developers from this source code or any supporting // // source code which is considered copyrighted (c) material of the // // original comment or credit authors. // // // // 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. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // ------------------------------------------------------------------------ // // Author: Kazumi Ono (AKA onokazu) // // URL: http://www.xoops.org/ http://jp.xoops.org/ http://www.myweb.ne.jp/ // // Project: The XOOPS Project (http://www.xoops.org/) // // ------------------------------------------------------------------------- // if (!defined('XOOPS_ROOT_PATH') || !is_object($xoopsModule)) { exit(); } include_once XOOPS_ROOT_PATH.'/language/'.$xoopsConfig['language'].'/comment.php'; $com_id = isset($_GET['com_id']) ? intval($_GET['com_id']) : 0; $com_mode = isset($_GET['com_mode']) ? htmlspecialchars(trim($_GET['com_mode']), ENT_QUOTES) : ''; if ($com_mode == '') { if (is_object($xoopsUser)) { $com_mode = $xoopsUser->getVar('umode'); } else { $com_mode = $xoopsConfig['com_mode']; } } if (!isset($_GET['com_order'])) { if (is_object($xoopsUser)) { $com_order = $xoopsUser->getVar('uorder'); } else { $com_order = $xoopsConfig['com_order']; } } else { $com_order = intval($_GET['com_order']); } $comment_handler =& xoops_gethandler('comment'); $comment =& $comment_handler->get($com_id); $r_name = XoopsUser::getUnameFromId($comment->getVar('com_uid')); //added By viva !!indicated by kamagasako m(_@_)m!! (2006/06/08) ---> if ($r_name == $GLOBALS['xoopsConfig']['anonymous']) { $r_name = $comment->getVar('com_poster_name'); } //added By viva !!indicated by kamagasako m(_@_)m!! (2006/06/08) <--- $r_text = _CM_POSTER.': '.$r_name.'  '._CM_POSTED.': '.formatTimestamp($comment->getVar('com_created')).'

'.$comment->getVar('com_text');$com_title = $comment->getVar('com_title', 'E'); if (!preg_match("/^re:/i", $com_title)) { $com_title = "Re: ".xoops_substr($com_title, 0, 56); } $com_pid = $com_id; $com_text = ''; $com_id = 0; $dosmiley = 1; $dohtml = 0; $doxcode = 1; $dobr = 1; $doimage = 1; $com_icon = ''; $com_rootid = $comment->getVar('com_rootid'); $com_itemid = $comment->getVar('com_itemid'); //added By viva(2005/12/25) ---> $com_poster_name = ''; //added By viva(2005/12/25) <--- include XOOPS_ROOT_PATH.'/header.php'; themecenterposts($comment->getVar('com_title'), $r_text); include XOOPS_ROOT_PATH.'/include/comment_form.php'; include XOOPS_ROOT_PATH.'/footer.php'; ?>