diff options
Diffstat (limited to 'services/tagcacheservice.php')
-rw-r--r-- | services/tagcacheservice.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/services/tagcacheservice.php b/services/tagcacheservice.php index bb82864..ed2eefc 100644 --- a/services/tagcacheservice.php +++ b/services/tagcacheservice.php @@ -49,6 +49,7 @@ class TagCacheService { $output[] = $row['tag']; } + $this->db->sql_freeresult($dbresult); return $output; } @@ -257,6 +258,7 @@ class TagCacheService { } $row = $this->db->sql_fetchrow($dbresult); + $this->db->sql_freeresult($dbresult); return $row['tag']; } @@ -289,6 +291,8 @@ class TagCacheService { foreach($rowset as $row) { $output[] = $row['tag']; } + + $this->db->sql_freeresult($dbresult); return $output; } |