diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-04-28 14:31:18 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-04-28 14:31:18 +0200 |
commit | 416cc7106ad571e9ed42874ceee7dfec549be2bb (patch) | |
tree | 09deed6cf86d05a6ec1fb103426f25df741b96f4 /program/include | |
parent | 311e82652ae0f2dd9792610175a1ba19cd71c0af (diff) | |
parent | 378d6cf97f1d3e6ae12b9f43b22f538417037934 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/iniset.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/program/include/iniset.php b/program/include/iniset.php index 913d3d7f6..919cc7682 100644 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -60,6 +60,11 @@ 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'; |