From 43477265400a16f20ed071f83e475633067923b2 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 16 Oct 2009 00:04:27 +0000 Subject: [PATCH] MINOR Removed duplicated SideReport_BrokenLinks class (merge error) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@89233 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/SideReport.php | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/code/SideReport.php b/code/SideReport.php index 9d7395f4..c7cbffe4 100755 --- a/code/SideReport.php +++ b/code/SideReport.php @@ -117,25 +117,6 @@ class SideReport_RecentlyEdited extends SideReport { } } -/** - * Content side-report listing pages with broken links - * @package cms - * @subpackage content - */ -class SideReport_BrokenLinks extends SideReport { - function title() { - return _t('SideReport.BROKENLINKS',"Pages with broken links"); - } - function records($params = null) { - return DataObject::get("SiteTree", "HasBrokenLink = 1"); - } - function fieldsToShow() { - return array( - "Title" => array("NestedTitle", array("2")), - ); - } -} - class SideReport_ToDo extends SideReport { function title() { return _t('SideReport.TODO',"To do");