diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-02 19:24:59 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-02 19:24:59 +0000 |
commit | 8db84f0d439ceec3006742bee56086700742d11c (patch) | |
tree | 801107756b5b7e30c951c308b2b0d17bd395cfce /mod/bookmarks/start.php | |
parent | 83ed6a85ef10757d147303b391343994d0d2faf8 (diff) | |
download | elgg-8db84f0d439ceec3006742bee56086700742d11c.tar.gz elgg-8db84f0d439ceec3006742bee56086700742d11c.tar.bz2 |
Refs #2463: Removed some gratuitous calls to elgg_get_site_url() from core plugins
git-svn-id: http://code.elgg.org/elgg/trunk@7195 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/bookmarks/start.php')
-rw-r--r-- | mod/bookmarks/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/bookmarks/start.php b/mod/bookmarks/start.php index 2c82ca674..8baa52938 100644 --- a/mod/bookmarks/start.php +++ b/mod/bookmarks/start.php @@ -11,7 +11,7 @@ function bookmarks_init() { global $CONFIG; //add a tools menu option - add_menu(elgg_echo('bookmarks'), elgg_get_site_url() . 'pg/bookmarks'); + add_menu(elgg_echo('bookmarks'), 'pg/bookmarks'); // Register a page handler, so we can have nice URLs register_page_handler('bookmarks', 'bookmarks_page_handler'); |