mirror of
https://github.com/e107inc/e107.git
synced 2025-08-03 13:17:24 +02:00
Bugtracker #3821 - link to user for last post - thanks Luceos
This commit is contained in:
@@ -11,8 +11,8 @@
|
|||||||
| GNU General Public License (http://gnu.org).
|
| GNU General Public License (http://gnu.org).
|
||||||
|
|
|
|
||||||
| $Source: /cvs_backup/e107_0.8/e107_plugins/forum/forum_viewforum.php,v $
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/forum/forum_viewforum.php,v $
|
||||||
| $Revision: 1.3 $
|
| $Revision: 1.4 $
|
||||||
| $Date: 2007-02-24 09:34:09 $
|
| $Date: 2007-03-02 21:13:05 $
|
||||||
| $Author: e107steved $
|
| $Author: e107steved $
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
@@ -488,10 +488,10 @@ function parse_sub($subInfo)
|
|||||||
$tmp = explode(".", $subInfo['forum_lastpost_info']);
|
$tmp = explode(".", $subInfo['forum_lastpost_info']);
|
||||||
$lp_thread = "<a href='".e_PLUGIN."forum/forum_viewtopic.php?{$tmp[1]}.last'>".IMAGE_post2."</a>";
|
$lp_thread = "<a href='".e_PLUGIN."forum/forum_viewtopic.php?{$tmp[1]}.last'>".IMAGE_post2."</a>";
|
||||||
$lp_date = $gen->convert_date($tmp[0], 'forum');
|
$lp_date = $gen->convert_date($tmp[0], 'forum');
|
||||||
$tmp = explode(".", $subInfo['forum_lastpost_user']);
|
$tmp = explode(".", $subInfo['forum_lastpost_user'],2);
|
||||||
if($subInfo['user_name'])
|
if($subInfo['user_name'])
|
||||||
{
|
{
|
||||||
$lp_name = "<a href='".e_BASE."user.php?{$tmp[0]}'>{$subInfo['user_name']}</a>";
|
$lp_name = "<a href='".e_BASE."user.php?id.{$tmp[0]}'>{$subInfo['user_name']}</a>";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user