git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7942 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
ngleader 2010-11-30 06:00:45 +00:00
parent 00cce68412
commit 5afa8b9d28

View file

@ -428,10 +428,14 @@
function getExtraEidValue($eid) {
$extra_vars = $this->getExtraVars();
// eid 명칭으로 확장변수 처리
foreach($extra_vars as $idx => $key) {
$extra_eid[$key->eid] = $key;
}
if($extra_vars)
{
// eid 명칭으로 확장변수 처리
foreach($extra_vars as $idx => $key) {
$extra_eid[$key->eid] = $key;
}
}
return $extra_eid[$eid]->value;
}