From eaebab16f53e89763f4698e3e9cff053db6fe344 Mon Sep 17 00:00:00 2001 From: Tijn Kuyper Date: Tue, 24 Jan 2017 22:02:57 +0100 Subject: [PATCH] Clean-up of {USER_NAME_LINK} --- e107_core/shortcodes/batch/user_shortcodes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_core/shortcodes/batch/user_shortcodes.php b/e107_core/shortcodes/batch/user_shortcodes.php index 0c32a703c..f80168642 100644 --- a/e107_core/shortcodes/batch/user_shortcodes.php +++ b/e107_core/shortcodes/batch/user_shortcodes.php @@ -409,8 +409,8 @@ class user_shortcodes extends e_shortcode function sc_user_name_link($parm='') { - $uparams = array('id' => $this->var['user_id'], 'name' => $this->var['user_name']); - return "".$this->var['user_name'].""; + $url = $this->sc_user_profile_url(); + return "".$this->var['user_name'].""; }