diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-27 18:29:30 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-27 18:29:30 -0400 |
commit | 3265812833f084a3bcc0734feffd5e7348b25c4e (patch) | |
tree | bb818c2faebecfcffbab3391a3e2c8182e562d39 /actions | |
parent | aa8dac17d34414b86642715fc1c1e34d8aee2de9 (diff) |
show exact date when needed
darcs-hash:20080627222930-84dde-e54a369d91060b7ff2559af9ff08735b2eec43d9.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/shownotice.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/actions/shownotice.php b/actions/shownotice.php index 04dd90111..4803f5fdf 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -33,14 +33,14 @@ class ShownoticeAction extends StreamAction { } $profile = $notice->getProfile(); - + if (!$profile) { $this->no_such_notice(); } # Looks like we're good; show the header - common_show_header($profile->nickname."'s status on ".common_date_string($notice->created), + common_show_header($profile->nickname."'s status on ".common_exact_date($notice->created), NULL, $profile, array($this, 'show_top')); @@ -53,12 +53,12 @@ class ShownoticeAction extends StreamAction { function show_top($user) { $cur = common_current_user(); - + if ($cur && $cur->id == $user->id) { common_notice_form(); } } - + function no_such_notice() { common_user_error('No such notice.'); } |