mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
BUGFIX: Better broken reason sorting (from r96989) (from r98205)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@105850 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
f61815616a
commit
b6a2a3746f
@ -12,6 +12,7 @@ class BrokenLinksReport extends SS_Report {
|
||||
}
|
||||
function sourceRecords($params, $sort, $limit) {
|
||||
$join = '';
|
||||
$sortBrokenReason = false;
|
||||
if($sort) {
|
||||
$parts = explode(' ', $sort);
|
||||
$field = $parts[0];
|
||||
@ -22,7 +23,8 @@ class BrokenLinksReport extends SS_Report {
|
||||
} elseif($field == 'Subsite.Title') {
|
||||
$join = 'LEFT JOIN "Subsite" ON "Subsite"."ID" = "SiteTree"."SubsiteID"';
|
||||
} elseif($field == 'BrokenReason') {
|
||||
$sort = "HasBrokenLink $direction, HasBrokenFile $direction";
|
||||
$sortBrokenReason = true;
|
||||
$sort = '';
|
||||
}
|
||||
}
|
||||
|
||||
@ -65,7 +67,7 @@ class BrokenLinksReport extends SS_Report {
|
||||
}
|
||||
}
|
||||
|
||||
//if ($sort) $returnSet->sort($sort);
|
||||
if($sortBrokenReason) $returnSet->sort('BrokenReason', $direction);
|
||||
|
||||
return $returnSet;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user