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:
parent
14fd750b08
commit
ff411ee81b
@ -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());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user