From 9bd9bc29adb2c5a89ad139457e6022e585c3019a Mon Sep 17 00:00:00 2001 From: Cameron Date: Sat, 16 Apr 2016 08:14:11 -0700 Subject: [PATCH] Fixes #1548 Newforumposts Main error --- e107_plugins/newforumposts_main/newforumposts_main.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_plugins/newforumposts_main/newforumposts_main.php b/e107_plugins/newforumposts_main/newforumposts_main.php index e1b753fe6..ec553e765 100644 --- a/e107_plugins/newforumposts_main/newforumposts_main.php +++ b/e107_plugins/newforumposts_main/newforumposts_main.php @@ -111,7 +111,7 @@ foreach ($forumArray as $forumInfo) if($lp_name) { //$LASTPOST = "$lp_name"; - $uparams = array('id' => $tmp[0], 'name' => $lp_name]); + $uparams = array('id' => $tmp[0], 'name' => $lp_name); $link = e107::getUrl()->create('user/profile/view', $uparams); $LASTPOST = "".$lp_name.""; } @@ -200,7 +200,7 @@ foreach ($forumArray as $forumInfo) if($user_name) { //$POSTER = "$user_name"; - $uparams = array('id' => $tmp[0], 'name' => $user_name]); + $uparams = array('id' => $tmp[0], 'name' => $user_name); $link = e107::getUrl()->create('user/profile/view', $uparams); $POSTER = "".$user_name.""; }