From 094633291529687143ad7a0fa3fc310293fa099c Mon Sep 17 00:00:00 2001 From: Damian Mooyman Date: Wed, 1 Nov 2017 17:19:04 +1300 Subject: [PATCH] Remove table prefix --- code/Reports/EmptyPagesReport.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/Reports/EmptyPagesReport.php b/code/Reports/EmptyPagesReport.php index 63466ef7..025a5243 100644 --- a/code/Reports/EmptyPagesReport.php +++ b/code/Reports/EmptyPagesReport.php @@ -27,8 +27,8 @@ class EmptyPagesReport extends Report public function sourceRecords($params = null) { return SiteTree::get() - ->exclude('SiteTree.ClassName', RedirectorPage::class) - ->filter('SiteTree.Content', [null, '', '

', '

 

']) + ->exclude('ClassName', RedirectorPage::class) + ->filter('Content', [null, '', '

', '

 

']) ->sort('Title'); }