aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/config
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-02-02 17:28:07 +0100
committerMarc Alexander <admin@m-a-styles.de>2015-02-02 17:36:39 +0100
commita166f6f42c1910c7987eef5597341863b2434b32 (patch)
tree5323f007bd9d1118ad742dd6f64fc76ee7e4f923 /phpBB/phpbb/config
parent9f59aa59d92c6641308a0c1d51a5d4e41d37b2ec (diff)
downloadforums-a166f6f42c1910c7987eef5597341863b2434b32.tar
forums-a166f6f42c1910c7987eef5597341863b2434b32.tar.gz
forums-a166f6f42c1910c7987eef5597341863b2434b32.tar.bz2
forums-a166f6f42c1910c7987eef5597341863b2434b32.tar.xz
forums-a166f6f42c1910c7987eef5597341863b2434b32.zip
[ticket/13569] Add missing sql_freeresults and remove unneeded results
PHPBB3-13569
Diffstat (limited to 'phpBB/phpbb/config')
-rw-r--r--phpBB/phpbb/config/db_text.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/config/db_text.php b/phpBB/phpbb/config/db_text.php
index b1e3ef5da4..ddc7c9aef0 100644
--- a/phpBB/phpbb/config/db_text.php
+++ b/phpBB/phpbb/config/db_text.php
@@ -154,6 +154,6 @@ class db_text
$sql = 'DELETE
FROM ' . $this->table . '
WHERE ' . $this->db->sql_in_set('config_name', $keys, false, true);
- $result = $this->db->sql_query($sql);
+ $this->db->sql_query($sql);
}
}