diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-30 22:04:16 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-30 22:04:16 +0000 |
commit | 42d890455ae7b6a61a566d174f9980b8faee782f (patch) | |
tree | f5da4e9c5cb9e2656dbbde06ba35dd9dc4d333d4 /mod/thewire | |
parent | ba5681722bbb3df247cda8eb3f64c7e040e5bf00 (diff) | |
download | elgg-42d890455ae7b6a61a566d174f9980b8faee782f.tar.gz elgg-42d890455ae7b6a61a566d174f9980b8faee782f.tar.bz2 |
Replaced $_SESSION['id'] and $_SESSION['guid'] with get_loggedin_userid()
git-svn-id: http://code.elgg.org/elgg/trunk@7143 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/thewire')
-rw-r--r-- | mod/thewire/index.php | 2 | ||||
-rw-r--r-- | mod/thewire/start.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/thewire/index.php b/mod/thewire/index.php index a0bc1757d..61eb9ef4a 100644 --- a/mod/thewire/index.php +++ b/mod/thewire/index.php @@ -17,7 +17,7 @@ } // title - if (elgg_get_page_owner_guid() == $_SESSION['guid']) { + if (elgg_get_page_owner_guid() == get_loggedin_userid()) { $area2 = elgg_view_title(elgg_echo("thewire:read")); } else { $area2 = elgg_view_title(sprintf(elgg_echo("thewire:user"),$page_owner->name)); diff --git a/mod/thewire/start.php b/mod/thewire/start.php index 097d74001..c47e17d5c 100644 --- a/mod/thewire/start.php +++ b/mod/thewire/start.php @@ -60,7 +60,7 @@ //add submenu options if (get_context() == "thewire") { - if ((elgg_get_page_owner_guid() == $_SESSION['guid'] || !elgg_get_page_owner_guid()) && isloggedin()) { + if ((elgg_get_page_owner_guid() == get_loggedin_userid() || !elgg_get_page_owner_guid()) && isloggedin()) { add_submenu_item(elgg_echo('thewire:read'),$CONFIG->wwwroot."pg/thewire/" . get_loggedin_user()->username); add_submenu_item(elgg_echo('thewire:everyone'),$CONFIG->wwwroot."mod/thewire/everyone.php"); //add_submenu_item(elgg_echo('thewire:add'),$CONFIG->wwwroot."mod/thewire/add.php"); |