diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2015-02-03 17:38:00 +0100 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2015-02-03 17:38:00 +0100 |
| commit | 2864e77d6c480f8424de962dd0570185c049a9af (patch) | |
| tree | 6202e3c5991eb0319d988e07a5b587f1088b2277 /phpBB/phpbb/config | |
| parent | 427d2de3ea345715506d048d0ef4c29b4191a908 (diff) | |
| parent | a166f6f42c1910c7987eef5597341863b2434b32 (diff) | |
| download | forums-2864e77d6c480f8424de962dd0570185c049a9af.tar forums-2864e77d6c480f8424de962dd0570185c049a9af.tar.gz forums-2864e77d6c480f8424de962dd0570185c049a9af.tar.bz2 forums-2864e77d6c480f8424de962dd0570185c049a9af.tar.xz forums-2864e77d6c480f8424de962dd0570185c049a9af.zip | |
Merge pull request #3361 from marc1706/ticket/13569
[ticket/13569] Add missing sql_freeresults and remove unneeded results
* marc1706/ticket/13569:
[ticket/13569] Add missing sql_freeresults and remove unneeded results
Diffstat (limited to 'phpBB/phpbb/config')
| -rw-r--r-- | phpBB/phpbb/config/db_text.php | 2 |
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); } } |
