mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
BUGFIX Removed unncessary backticks
This commit is contained in:
parent
3c638d27fc
commit
717139bfae
@ -47,7 +47,7 @@ class UserFormsMigrationTask extends MigrationTask {
|
|||||||
// if they want to import just 1 form - eg for testing
|
// if they want to import just 1 form - eg for testing
|
||||||
if(isset($_GET['formID'])) {
|
if(isset($_GET['formID'])) {
|
||||||
$id = Convert::raw2sql($_GET['formID']);
|
$id = Convert::raw2sql($_GET['formID']);
|
||||||
$forms = DataObject::get("UserDefinedForm", "`UserDefinedForm`.ID = '$id'");
|
$forms = DataObject::get("UserDefinedForm", "UserDefinedForm.ID = '$id'");
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$forms) {
|
if(!$forms) {
|
||||||
|
Loading…
Reference in New Issue
Block a user