mirror of
https://github.com/e107inc/e107.git
synced 2025-09-03 03:13:34 +02:00
Issue #1309. e_BASE."user.php" replaced with SEF URL.
This commit is contained in:
@@ -110,7 +110,10 @@ foreach ($forumArray as $forumInfo)
|
||||
$tmp = explode(".", $thread_lastuser, 2);
|
||||
if($lp_name)
|
||||
{
|
||||
$LASTPOST = "<a href='".e_BASE."user.php?id.{$tmp[0]}'>$lp_name</a>";
|
||||
//$LASTPOST = "<a href='".e_BASE."user.php?id.{$tmp[0]}'>$lp_name</a>";
|
||||
$uparams = array('id' => $tmp[0], 'name' => $lp_name]);
|
||||
$link = e107::getUrl()->create('user/profile/view', $uparams);
|
||||
$LASTPOST = "<a href='".$link."'>".$lp_name."</a>";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user