From 60b2f4ef299f98b79c1a6cdf3444be68028fcab0 Mon Sep 17 00:00:00 2001 From: haneul Date: Wed, 24 Jun 2009 08:05:52 +0000 Subject: [PATCH] #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 --- modules/planet/planet.info.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/planet/planet.info.php b/modules/planet/planet.info.php index dcde3999e..e0ca4108b 100644 --- a/modules/planet/planet.info.php +++ b/modules/planet/planet.info.php @@ -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);