发布活动贴时,如果身在群组之中,可以有一个选择我的群组。
选择群组后,帖子内容的最下面会出现 如图:
现在希望改变来自群组的位置,但对模板不太熟悉,请教各位了
============================================
在function_discuzcode.php文件中的74行有函数function discuzcode
代码如下:
function discuzcode($message, $smileyoff, $bbcodeoff, $htmlon = 0, $allowsmilies = 1, $allowbbcode = 1, $allowimgcode = 1, $allowhtml = 0,
$jammer = 0, $parsetype = '0', $authorid = '0', $allowmediacode = '0', $pid = 0, $lazyload = 0, $pdateline = 0, $first = 0)
{
global $_G;
static $authorreplyexist;
...........................
if($first) {
if(helper_access::check_module('group')) {
$message = preg_replace("/\[groupid=(\d+)\](.*)\[\/groupid\]/i", lang('forum/template', 'fromgroup').': <a href="forum.php?mod=forumdisplay&fid=\\1" target="_blank">\\2</a>', $message);
} else {
$message = preg_replace("/(\[groupid=\d+\].*\[\/groupid\])/i", '', $message);
}
}
return $htmlon ? $message : nl2br(str_replace(array("\t", ' ', ' '), array(' ', ' ', ' '), $message));
}
=======================================================================
标红的代码应该就是显示来自群组:XXXX,的代码。
但是不知道如何查询模板中它们是在哪里输出的
|