mirror of
https://github.com/standardebooks/web.git
synced 2025-07-21 23:04:57 -04:00
Refactor HttpInput::Str and rename some exceptions for consistency
This commit is contained in:
parent
2b5f4f55a2
commit
ca3fc6dbfd
54 changed files with 163 additions and 159 deletions
|
@ -12,9 +12,9 @@ session_start();
|
|||
$requestType = HttpInput::RequestType();
|
||||
|
||||
$session = new Session();
|
||||
$email = HttpInput::Str(POST, 'email', false);
|
||||
$password = HttpInput::Str(POST, 'password', false);
|
||||
$redirect = HttpInput::Str(POST, 'redirect', false);
|
||||
$email = HttpInput::Str(POST, 'email');
|
||||
$password = HttpInput::Str(POST, 'password');
|
||||
$redirect = HttpInput::Str(POST, 'redirect');
|
||||
|
||||
try{
|
||||
if($redirect === null){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue