diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-03-05 03:41:26 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-03-05 22:59:57 +0100 |
commit | 95764c4f0e6b1ceef7b14e2394637891482ade43 (patch) | |
tree | 8e9486b1353e899ff4c2177360061934c88b2d8a /phpBB/includes/config | |
parent | 722092fe546025deeba487f18a34db0e60ca6f1c (diff) | |
download | forums-95764c4f0e6b1ceef7b14e2394637891482ade43.tar forums-95764c4f0e6b1ceef7b14e2394637891482ade43.tar.gz forums-95764c4f0e6b1ceef7b14e2394637891482ade43.tar.bz2 forums-95764c4f0e6b1ceef7b14e2394637891482ade43.tar.xz forums-95764c4f0e6b1ceef7b14e2394637891482ade43.zip |
[ticket/10202] Add $this->db->sql_freeresult($result) to SELECT queries.
PHPBB3-10202
Diffstat (limited to 'phpBB/includes/config')
-rw-r--r-- | phpBB/includes/config/db_text.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/config/db_text.php b/phpBB/includes/config/db_text.php index 05ba4ddabf..0c18675ffc 100644 --- a/phpBB/includes/config/db_text.php +++ b/phpBB/includes/config/db_text.php @@ -136,6 +136,7 @@ class phpbb_config_db_text { $map[$row['config_name']] = $row['config_value']; } + $this->db->sql_freeresult($result); return $map; } |