mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 21:29:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@703 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
f01485af09
commit
e93576f6b6
11 changed files with 62 additions and 12 deletions
|
|
@ -767,6 +767,7 @@
|
|||
// className, style attribute를 구해 놓음
|
||||
$className = $vars->class;
|
||||
$style = $vars->style;
|
||||
unset($vars->module_srl);
|
||||
unset($vars->class);
|
||||
unset($vars->style);
|
||||
unset($vars->src);
|
||||
|
|
|
|||
|
|
@ -18,8 +18,7 @@
|
|||
if(!$oPlugin) return;
|
||||
|
||||
// 플러그인 실행
|
||||
$output = $oPlugin->proc($args);
|
||||
return $output;
|
||||
return $oPlugin->proc($args);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -281,7 +281,8 @@
|
|||
$buff = sprintf('sprintf("%s like \'%%s%%%%\' ", $this->addQuotes($args->%s))', $column, $var);
|
||||
break;
|
||||
case 'in' :
|
||||
$buff = sprintf('sprintf("%s in (%%s) ", $this->addQuotes($args->%s))', $column, $var);
|
||||
//$buff = sprintf('sprintf("%s in (%%s) ", $this->addQuotes($args->%s))', $column, $var);
|
||||
$buff = sprintf('sprintf("%s in (%%s) ", $args->%s)', $column, $var);
|
||||
break;
|
||||
case 'notnull' :
|
||||
case 'null' :
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue