object 클래스에서 잘못된 함수명 수정. (장아산님의 제보)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3137 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-12-03 04:26:35 +00:00
parent 801df3afd5
commit a0598b43ed

View file

@ -86,7 +86,7 @@
$args_list = func_get_args();
for($i=0;$i<$num_args;$i++) {
$key = $args_list[$i];
$output->{$key} = $this->gets($key);
$output->{$key} = $this->get($key);
}
return $output;
}