Fix CLI script to work with namespaces.

This commit is contained in:
Daniel Kraus
2017-08-31 21:24:23 +02:00
parent 85e09b8f5d
commit a461e19433
3 changed files with 3 additions and 3 deletions

View File

@ -197,7 +197,7 @@ class Source {
* @return boolean True if the source page has content.
*/
public function hasContent() {
return $this->content != null;
return $this->getContent() != null;
}
/**