17210051 r4466에 타입체크

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4467 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2008-08-26 00:53:18 +00:00
parent 6745883074
commit 7dc9672a92
7 changed files with 7 additions and 7 deletions

View file

@ -381,7 +381,7 @@
foreach($output->conditions as $key => $val) {
$sub_condition = '';
foreach($val['condition'] as $k =>$v) {
if(!isset($v['value']) || $v['value'] == '') continue;
if(!isset($v['value']) || $v['value'] === '') continue;
$name = $v['column'];
$operation = $v['operation'];

View file

@ -592,7 +592,7 @@
foreach($output->conditions as $key => $val) {
$sub_condition = '';
foreach($val['condition'] as $k =>$v) {
if(!isset($v['value']) || $v['value'] == '') continue;
if(!isset($v['value']) || $v['value'] === '') continue;
$name = $v['column'];
$operation = $v['operation'];

View file

@ -369,7 +369,7 @@
foreach($output->conditions as $key => $val) {
$sub_condition = '';
foreach($val['condition'] as $k =>$v) {
if(!isset($v['value']) || $v['value'] == '') continue;
if(!isset($v['value']) || $v['value'] === '') continue;
$name = $v['column'];
$operation = $v['operation'];

View file

@ -379,7 +379,7 @@
foreach($output->conditions as $key => $val) {
$sub_condition = '';
foreach($val['condition'] as $k =>$v) {
if(!isset($v['value']) || $v['value'] == '') continue;
if(!isset($v['value']) || $v['value'] === '') continue;
$name = $v['column'];
$operation = $v['operation'];

View file

@ -371,7 +371,7 @@
foreach($output->conditions as $key => $val) {
$sub_condition = '';
foreach($val['condition'] as $k =>$v) {
if(!isset($v['value']) || $v['value'] == '') continue;
if(!isset($v['value']) || $v['value'] === '') continue;
$name = $v['column'];
$operation = $v['operation'];

View file

@ -352,7 +352,7 @@
foreach($output->conditions as $key => $val) {
$sub_condition = '';
foreach($val['condition'] as $k =>$v) {
if(!isset($v['value']) || $v['value'] == '') continue;
if(!isset($v['value']) || $v['value'] === '') continue;
$name = $v['column'];
$operation = $v['operation'];

View file

@ -381,7 +381,7 @@
foreach($output->conditions as $key => $val) {
$sub_condition = '';
foreach($val['condition'] as $k =>$v) {
if(!isset($v['value']) || $v['value'] == '') continue;
if(!isset($v['value']) || $v['value'] === '') continue;
$name = $v['column'];
$operation = $v['operation'];