1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-04 16:06:00 +02:00

[ticket/14957] Do not use method return in write context

Fix for PHP 5.3.x compatibility.

PHPBB3-14957
This commit is contained in:
Marc Alexander 2017-01-03 21:53:14 +01:00
parent 14fd750b08
commit ff411ee81b
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -309,7 +309,8 @@ class container_builder
*/
protected function inject_dbal_driver()
{
if (!empty($this->config_php_file->get_all()))
$config_data = $this->config_php_file->get_all();
if (!empty($config_data))
{
$this->container->set('dbal.conn.driver', $this->get_dbal_connection());
}