#18098733 * fix the problem that tags for each person are same with the first person's tag (due to static declaration)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6662 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2009-06-24 08:05:52 +00:00
parent b02ec61428
commit 60b2f4ef29

View file

@ -164,9 +164,9 @@
}
function getTags() {
static $tags = null;
//static $tags = null;
if(!$this->isExists()) return;
if(!is_null($tags)) return $tags;
//if(!is_null($tags)) return $tags;
$args->module_srl = $this->planet_srl;
$output = executeQueryArray('planet.getPlanetTag', $args);