Make BlogPost::isAuthor public

This commit is contained in:
David Craig 2015-04-02 14:50:46 +13:00
parent 4e1b4afb6c
commit 99b03b555c
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ class BlogPost extends Page {
* @param Member $member
* @return boolean
*/
protected function isAuthor($member) {
public function isAuthor($member) {
if(!$member || !$member->exists()) return false;
$list = $this->Authors();