mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
Merge pull request #976 from ss23/SS2014004-3-0
FIX Prevent SQLi when no URL filters are applied
This commit is contained in:
commit
43d308cd1b
@ -1584,9 +1584,10 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$segment = Convert::raw2sql($this->URLSegment);
|
||||||
$existingPage = DataObject::get_one(
|
$existingPage = DataObject::get_one(
|
||||||
'SiteTree',
|
'SiteTree',
|
||||||
"\"URLSegment\" = '$this->URLSegment' $IDFilter $parentFilter"
|
"\"URLSegment\" = '$segment' $IDFilter $parentFilter"
|
||||||
);
|
);
|
||||||
if ($existingPage) {
|
if ($existingPage) {
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user