diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-07 03:25:45 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-07 03:25:45 -0400 |
commit | 88ea4ddd2d0876022d3720c647e695dedbaf456d (patch) | |
tree | 1f170451fa9fdffb5c7db9d274ac4f19c044a236 | |
parent | f2543d17975c100404ec3ecc00fa1ce39a4b62d6 (diff) |
add in the notice form
darcs-hash:20080707072545-84dde-1f78764ef1c19f311fea9b8315e1081b4c2e6b0c.gz
-rw-r--r-- | actions/replies.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/actions/replies.php b/actions/replies.php index ce12b4d9f..e4910340d 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -62,6 +62,12 @@ class RepliesAction extends StreamAction { } function show_top($user) { + $cur = common_current_user(); + + if ($cur && $cur->id == $user->id) { + common_notice_form('replies'); + } + $this->views_menu(); } |