MINOR add the ability to link-check the live table too (from r89473) (from r95310)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@99113 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-02-16 03:41:33 +00:00 committed by Sam Minnee
parent 032ce7f60b
commit 2462a9cde9

View File

@ -235,7 +235,7 @@ class SideReport_BrokenLinks extends SS_Report {
),
);
}
function parameterFields() {
function getParameterFields() {
return new FieldSet(
new CheckboxField('OnLive', 'Check live site')
);
@ -272,11 +272,13 @@ class SideReport_BrokenFiles extends SS_Report {
),
);
}
function parameterFields() {
function getParameterFields() {
return new FieldSet(
new CheckboxField('OnLive', 'Check live site')
);
}
}
class SideReport_BrokenVirtualPages extends SS_Report {
@ -301,7 +303,8 @@ class SideReport_BrokenVirtualPages extends SS_Report {
),
);
}
function parameterFields() {
function getParameterFields() {
return new FieldSet(
new CheckboxField('OnLive', 'Check live site')
);
@ -331,7 +334,8 @@ class SideReport_BrokenRedirectorPages extends SS_Report {
),
);
}
function parameterFields() {
function getParameterFields() {
return new FieldSet(
new CheckboxField('OnLive', 'Check live site')
);