mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
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:
parent
032ce7f60b
commit
2462a9cde9
@ -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')
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user