mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-24 04:42:14 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7298 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c51304406f
commit
b0ef092109
1 changed files with 2 additions and 2 deletions
|
|
@ -325,7 +325,7 @@
|
|||
$type = $output->column_type[$key];
|
||||
|
||||
// type 값이 null 일때는 $key값이 alias인 경우라 실제 column 이름을 찾아 type을 구함
|
||||
if($type == null) {
|
||||
if($type == null && $output->columns && count($output->columns)) {
|
||||
foreach($output->columns as $cols) {
|
||||
if($cols['alias'] == $key) {
|
||||
// table.column 형식인지 정규식으로 검사 함
|
||||
|
|
@ -992,7 +992,7 @@
|
|||
$type = $output->column_type[$key];
|
||||
|
||||
// type 값이 null 일때는 $key값이 alias인 경우라 실제 column 이름을 찾아 type을 구함
|
||||
if($type == null) {
|
||||
if($type == null && $output->columns && count($output->columns)) {
|
||||
foreach($output->columns as $cols) {
|
||||
if($cols['alias'] == $key) {
|
||||
// table.column 형식인지 정규식으로 검사 함
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue