mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix value check and formatting.
This commit is contained in:
parent
e83a532af0
commit
70c4e40532
2 changed files with 2 additions and 2 deletions
|
@ -934,7 +934,7 @@ class Postgres extends DboSource {
|
|||
*/
|
||||
public function value($data, $column = null, $null = true) {
|
||||
$value = parent::value($data, $column, $null);
|
||||
if ($column == 'uuid' && is_scalar($data)) {
|
||||
if ($column === 'uuid' && is_scalar($data)) {
|
||||
if ($data === '') {
|
||||
return 'NULL';
|
||||
}
|
||||
|
|
|
@ -501,7 +501,7 @@ class SecurityComponentTest extends CakeTestCase {
|
|||
$this->Controller->request->data = array(
|
||||
'Model' => array('username' => 'nate', 'password' => 'foo', 'valid' => '0'),
|
||||
'_Token' => compact('fields', 'unlocked')
|
||||
);
|
||||
);
|
||||
$this->assertFalse($this->Controller->failed, 'Should not be failed yet');
|
||||
$this->Controller->Security->startup($this->Controller);
|
||||
$this->assertTrue($this->Controller->failed, 'Should fail because of validatePost.');
|
||||
|
|
Loading…
Reference in a new issue