mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
MINOR - Allow pre filled form fields via url params
This commit is contained in:
parent
350a6fa65d
commit
c575c8d981
@ -405,6 +405,11 @@ class UserDefinedForm_Controller extends Page_Controller {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// set the values passed by the url to the field
|
||||||
|
$request = $this->getRequest();
|
||||||
|
$value = $request->getVar( $field->name );
|
||||||
|
if( isset( $value ) ) $field->value = $value;
|
||||||
|
|
||||||
$fields->push($field);
|
$fields->push($field);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user