Merge pull request #251 from ajtrichards/master

BInput XSS protection using get instead of all - setup fails
This commit is contained in:
Graham Campbell
2015-01-02 17:15:32 +00:00

View File

@@ -42,7 +42,7 @@ class SetupController extends Controller
*/
public function postIndex()
{
$postData = Binput::get();
$postData = Binput::all();
$v = Validator::make($postData, [
'settings.app_name' => 'required',