diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2017-06-24 13:56:11 -0400 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2017-06-24 13:56:11 -0400 |
| commit | 6c61f22143cb1c6ee621f5e02d2213e0412afacd (patch) | |
| tree | f3623458dc13d2a334c9e2220682db4a64479a94 /private/model | |
| parent | 764afc1afa43ff0bca09648287868b8e2fc82101 (diff) | |
| download | august-offensive-6c61f22143cb1c6ee621f5e02d2213e0412afacd.tar.gz august-offensive-6c61f22143cb1c6ee621f5e02d2213e0412afacd.tar.bz2 august-offensive-6c61f22143cb1c6ee621f5e02d2213e0412afacd.zip | |
Remove unexpected keyword from statement
Diffstat (limited to 'private/model')
| -rw-r--r-- | private/model/Connection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/private/model/Connection.php b/private/model/Connection.php index 18b0d72..dc25e8b 100644 --- a/private/model/Connection.php +++ b/private/model/Connection.php @@ -31,7 +31,7 @@ class Connection ); // we destroy $cred as quickly as possible $cred = null; - } catch (PDOException as $e) { + } catch (PDOException $e) { // we destroy $cred as quickly as possible $cred = null; die(json_encode(array("Result-Type" => "Error", "Content" => array($e)))); |
