mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
17210051 r4455로 인한 쿼리 문제 임시 해결
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4466 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4cbae35487
commit
6745883074
7 changed files with 7 additions and 7 deletions
|
|
@ -381,7 +381,7 @@
|
|||
foreach($output->conditions as $key => $val) {
|
||||
$sub_condition = '';
|
||||
foreach($val['condition'] as $k =>$v) {
|
||||
if(!isset($v['value'])) continue;
|
||||
if(!isset($v['value']) || $v['value'] == '') continue;
|
||||
|
||||
$name = $v['column'];
|
||||
$operation = $v['operation'];
|
||||
|
|
|
|||
|
|
@ -592,7 +592,7 @@
|
|||
foreach($output->conditions as $key => $val) {
|
||||
$sub_condition = '';
|
||||
foreach($val['condition'] as $k =>$v) {
|
||||
if(!isset($v['value'])) continue;
|
||||
if(!isset($v['value']) || $v['value'] == '') continue;
|
||||
|
||||
$name = $v['column'];
|
||||
$operation = $v['operation'];
|
||||
|
|
|
|||
|
|
@ -369,7 +369,7 @@
|
|||
foreach($output->conditions as $key => $val) {
|
||||
$sub_condition = '';
|
||||
foreach($val['condition'] as $k =>$v) {
|
||||
if(!isset($v['value'])) continue;
|
||||
if(!isset($v['value']) || $v['value'] == '') continue;
|
||||
|
||||
$name = $v['column'];
|
||||
$operation = $v['operation'];
|
||||
|
|
|
|||
|
|
@ -379,7 +379,7 @@
|
|||
foreach($output->conditions as $key => $val) {
|
||||
$sub_condition = '';
|
||||
foreach($val['condition'] as $k =>$v) {
|
||||
if(!isset($v['value'])) continue;
|
||||
if(!isset($v['value']) || $v['value'] == '') continue;
|
||||
|
||||
$name = $v['column'];
|
||||
$operation = $v['operation'];
|
||||
|
|
|
|||
|
|
@ -371,7 +371,7 @@
|
|||
foreach($output->conditions as $key => $val) {
|
||||
$sub_condition = '';
|
||||
foreach($val['condition'] as $k =>$v) {
|
||||
if(!isset($v['value'])) continue;
|
||||
if(!isset($v['value']) || $v['value'] == '') continue;
|
||||
|
||||
$name = $v['column'];
|
||||
$operation = $v['operation'];
|
||||
|
|
|
|||
|
|
@ -352,7 +352,7 @@
|
|||
foreach($output->conditions as $key => $val) {
|
||||
$sub_condition = '';
|
||||
foreach($val['condition'] as $k =>$v) {
|
||||
if(!isset($v['value'])) continue;
|
||||
if(!isset($v['value']) || $v['value'] == '') continue;
|
||||
|
||||
$name = $v['column'];
|
||||
$operation = $v['operation'];
|
||||
|
|
|
|||
|
|
@ -381,7 +381,7 @@
|
|||
foreach($output->conditions as $key => $val) {
|
||||
$sub_condition = '';
|
||||
foreach($val['condition'] as $k =>$v) {
|
||||
if(!isset($v['value'])) continue;
|
||||
if(!isset($v['value']) || $v['value'] == '') continue;
|
||||
|
||||
$name = $v['column'];
|
||||
$operation = $v['operation'];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue