From cbac33113a2d706b752675c83e31d8afcfb9be32 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 23 Oct 2014 15:42:19 +0200 Subject: Fix "PHP Fatal error: Cannot redeclare class PEAR" if both program/lib/PEAR.php and composer loaders exist (#1490112) --- program/include/iniset.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'program') diff --git a/program/include/iniset.php b/program/include/iniset.php index 981a53d18..a999ea57e 100644 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -54,17 +54,17 @@ if (set_include_path($include_path) === false) { // (does not work in safe mode) @set_time_limit(120); +// include composer autoloader (if available) +if (@file_exists('vendor/autoload.php')) { + require 'vendor/autoload.php'; +} + // include Roundcube Framework require_once 'Roundcube/bootstrap.php'; // register autoloader for rcmail app classes spl_autoload_register('rcmail_autoload'); -// include composer autoloader (if available) -if (@file_exists('vendor/autoload.php')) { - require 'vendor/autoload.php'; -} - // backward compatybility (to be removed) require_once INSTALL_PATH . 'program/include/bc.php'; -- cgit v1.2.3