diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-04-28 13:42:52 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-04-28 13:42:52 +0200 |
commit | b4d50cb41c4d00333c0c680ae04e44129eff7a31 (patch) | |
tree | f33551bde38786a1d815a5b99b1004b32494783b /program | |
parent | 4cb8ced1a4ca32c6837e848dbfc585892b802f67 (diff) |
Prepare for the composer-based plugin repository; skip PEAR dependencies for now
Diffstat (limited to 'program')
-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'; |