mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
#162 db query의 입력값 유무 검사 오류 수정
This commit is contained in:
parent
919bc4ee33
commit
fb998623ea
1 changed files with 1 additions and 1 deletions
|
|
@ -286,7 +286,7 @@ class Argument
|
||||||
|
|
||||||
function ensureDefaultValue($default_value)
|
function ensureDefaultValue($default_value)
|
||||||
{
|
{
|
||||||
if(!isset($this->value) || $this->value == '')
|
if($this->value === NULL || $this->value === '')
|
||||||
{
|
{
|
||||||
$this->value = $default_value;
|
$this->value = $default_value;
|
||||||
$this->uses_default_value = TRUE;
|
$this->uses_default_value = TRUE;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue