1770 Posts in 495 Topics by 531 members
Blog Module
SilverStripe Forums » Blog Module » Missing author in LatestPagesWidget
Discuss the Blog Module.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 523 Views |
-
Missing author in LatestPagesWidget

30 December 2009 at 2:27am
My latest pages widget doesn't display the author anymore (the hover text now ends in 'By ').
The code of the widget is:
function LatestPages() {
$pages = DataObject::get('SiteTree', '', '`LastEdited` DESC', '', 5);
$return = new DataObjectSet();
foreach($pages as $page) {
$versioned = Versioned::get_version("SiteTree", $page->ID, $page->Version);
//var_dump($versioned);
$author = Member::get_one("Member", "ID = " . (int)$versioned->AuthorID);
//var_dump($author);
$return->push(new ArrayData(array('Page' => $versioned, 'Author' => $author)));
}
return $return;
}
var_dump($versioned); returns all items with AuthorID = 0. So I suspect something is broken there.Anybody knows a fix so the author is again mentioned in the tooltip?
| 523 Views | ||
|
Page:
1
|
Go to Top |

