diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-03-29 15:43:49 +0100 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-03-29 15:43:49 +0100 |
commit | 0edfcc5a28d9e13aa2f6e758bbfe0281e345ab27 (patch) | |
tree | b927cec0d45bb259e29b07b0b4e05b6f86cc7de1 /phpBB | |
parent | db6e5a19f2f812012fa15047aa97e74608bff34c (diff) | |
download | forums-0edfcc5a28d9e13aa2f6e758bbfe0281e345ab27.tar forums-0edfcc5a28d9e13aa2f6e758bbfe0281e345ab27.tar.gz forums-0edfcc5a28d9e13aa2f6e758bbfe0281e345ab27.tar.bz2 forums-0edfcc5a28d9e13aa2f6e758bbfe0281e345ab27.tar.xz forums-0edfcc5a28d9e13aa2f6e758bbfe0281e345ab27.zip |
[ticket/7707] Add get_username_string() once more
PHPBB3-7707
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/notification/type/admin_activate_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/type/admin_activate_user.php b/phpBB/phpbb/notification/type/admin_activate_user.php index 426da4db03..62ea759a98 100644 --- a/phpBB/phpbb/notification/type/admin_activate_user.php +++ b/phpBB/phpbb/notification/type/admin_activate_user.php @@ -142,7 +142,7 @@ class admin_activate_user extends \phpbb\notification\type\base */ public function get_url() { - return append_sid($this->phpbb_root_path . 'memberlist.' . $this->php_ext, "mode=viewprofile&u={$this->item_id}"); + return $this->user_loader->get_username($this->item_id, 'profile'); } /** |