diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-24 20:14:01 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-24 20:14:01 -0800 |
commit | 865995305cbd709db4f8587d73e7178a277a8d8b (patch) | |
tree | 1e607d0184f29bee7665df42df99b3a32cf2c2ff /modules/gallery/controllers/user_profile.php | |
parent | 26eb000637fb83c04919e1e18c67b1441db76da6 (diff) |
Add the active notifications and rest api key to user profile page.
Diffstat (limited to 'modules/gallery/controllers/user_profile.php')
-rw-r--r-- | modules/gallery/controllers/user_profile.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/gallery/controllers/user_profile.php b/modules/gallery/controllers/user_profile.php index 3a7e0200..53c76a48 100644 --- a/modules/gallery/controllers/user_profile.php +++ b/modules/gallery/controllers/user_profile.php @@ -30,8 +30,6 @@ class User_Profile_Controller extends Controller { $v->content = new View("user_profile.html"); // @todo modify user_home to supply a link to their album, - // @todo add list of watches - // @todo add rest api key $v->content->user = $user; $v->content->not_current = !$is_current_active; $v->content->editable = identity::is_writable() && $display_all; @@ -39,7 +37,6 @@ class User_Profile_Controller extends Controller { $event_data = (object)array("user" => $user, "display_all" => $display_all, "content" => array()); module::event("show_user_profile", $event_data); - Kohana_Log::add("error", Kohana::debug($event_data)); $v->content->info_parts = $event_data->content; print $v; |