forked from GNUsocial/gnu-social
use getCurrentNotice() on profile page
darcs-hash:20080709203831-84dde-6f5f64f354a243ffefea8af8ef046d4bd0ec8e82.gz
This commit is contained in:
parent
66b1f3f233
commit
e04f24a3f8
@ -336,12 +336,9 @@ class ShowstreamAction extends StreamAction {
|
||||
|
||||
common_element('h2', NULL, _t('Currently'));
|
||||
|
||||
$notice = DB_DataObject::factory('notice');
|
||||
$notice->profile_id = $profile->id;
|
||||
$notice->orderBy('created DESC');
|
||||
$notice->limit(0, 1);
|
||||
$notice = $profile->getCurrentNotice();
|
||||
|
||||
if ($notice->find(true)) {
|
||||
if ($notice) {
|
||||
# FIXME: URL, image, video, audio
|
||||
common_element_start('p', array('class' => 'notice_current'));
|
||||
if ($notice->rendered) {
|
||||
|
Loading…
Reference in New Issue
Block a user