diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-09 11:22:20 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-09 11:22:20 +0000 |
commit | d499b87e5aa29f01e42da391d12b709d770d55fd (patch) | |
tree | 7da1de830aef5c53e2bbc325ce5aacfc5d76f0bc | |
parent | fd2b192633749814cc45b40aed293c1a4a6dbb72 (diff) | |
download | elgg-d499b87e5aa29f01e42da391d12b709d770d55fd.tar.gz elgg-d499b87e5aa29f01e42da391d12b709d770d55fd.tar.bz2 |
Updated 'my wire' link in toolbar menu
git-svn-id: http://code.elgg.org/elgg/trunk@5318 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/thewire/languages/en.php | 2 | ||||
-rw-r--r-- | mod/thewire/start.php | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/mod/thewire/languages/en.php b/mod/thewire/languages/en.php index 69e35cdfd..c2e23d04f 100644 --- a/mod/thewire/languages/en.php +++ b/mod/thewire/languages/en.php @@ -6,7 +6,7 @@ * Menu items and titles */ - 'thewire' => "The wire", + 'thewire' => "My wire posts", 'thewire:user' => "%s's wire posts", 'thewire:posttitle' => "%s's notes on the wire: %s", 'thewire:everyone' => "All wire posts", diff --git a/mod/thewire/start.php b/mod/thewire/start.php index dfa57bd17..97630336a 100644 --- a/mod/thewire/start.php +++ b/mod/thewire/start.php @@ -28,9 +28,7 @@ // Set up menu for logged in users if (isloggedin()) { - - add_menu(elgg_echo('thewire'), $CONFIG->wwwroot . "mod/thewire/everyone.php"); - + add_menu(elgg_echo('thewire'), $CONFIG->wwwroot . "pg/thewire/". $_SESSION['user']->username); } // Extend system CSS with our own styles, which are defined in the thewire/css view |