aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-04-05 09:54:14 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-04-05 09:54:14 +0200
commitced48a51a4a6ffca6a3fd2e3982b236bfa3a199c (patch)
tree82221065d31ebe9f68bb5df15ca280ff052e3e6d /phpBB/phpbb/notification
parentbd36ca101654000bb91127d8f1c3db881a9deaf1 (diff)
parent8f525e1ef5777c1dc77d7eb4d43039c5dd059f88 (diff)
downloadforums-ced48a51a4a6ffca6a3fd2e3982b236bfa3a199c.tar
forums-ced48a51a4a6ffca6a3fd2e3982b236bfa3a199c.tar.gz
forums-ced48a51a4a6ffca6a3fd2e3982b236bfa3a199c.tar.bz2
forums-ced48a51a4a6ffca6a3fd2e3982b236bfa3a199c.tar.xz
forums-ced48a51a4a6ffca6a3fd2e3982b236bfa3a199c.zip
Merge remote-tracking branch 'Elsensee/ticket/7707' into develop-ascraeus
* Elsensee/ticket/7707: [ticket/7707] Fix undefined variable: perm_from [ticket/7707] Add comma to last entry of arrays [ticket/7707] Remove unnecessary variables [ticket/7707] Add get_username_string() once more [ticket/7707] Remove unnecessary variables [ticket/7707] Add get_username_string() where possible
Diffstat (limited to 'phpBB/phpbb/notification')
-rw-r--r--phpBB/phpbb/notification/type/admin_activate_user.php2
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');
}
/**