Issue 182 - Update query argument ignored when value is 0.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9314 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ucorina 2011-09-23 09:15:30 +00:00
parent cb605c4ac6
commit 23678b790b
2 changed files with 13 additions and 1 deletions

View file

@ -44,7 +44,8 @@
function show(){
if(!$this->argument) return false;
if(!$this->argument->getValue()) return false;
$value = $this->argument->getValue();
if(!isset($value)) return false;
return true;
}