Merge pull request #1 from silverstripe-security/pulls/2.1/ss-2018-016

[SS-2018-016] Group table name is escaped to prevent possibility of SQL injection
This commit is contained in:
Robbie Averill 2018-07-25 09:55:14 +12:00 committed by GitHub
commit bf2c81dce6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class GroupSubsites extends DataExtension implements PermissionProvider
}
// Migration for Group.SubsiteID data from when Groups only had a single subsite
$schema = DataObject::getSchema();
$groupTable = $schema->tableName(Group::class);
$groupTable = Convert::raw2sql($schema->tableName(Group::class));
$groupFields = DB::field_list($groupTable);
// Detection of SubsiteID field is the trigger for old-style-subsiteID migration