1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-09 16:32:39 +01:00

Make __init_env__.php load libraries specified in config.

This commit is contained in:
epriestley 2011-04-02 10:36:24 -07:00
parent 1f88e08761
commit 173eaf48f4

4
scripts/__init_env__.php Normal file → Executable file
View file

@ -29,3 +29,7 @@ $conf['phabricator.env'] = $env;
phutil_require_module('phabricator', 'infrastructure/env');
PhabricatorEnv::setEnvConfig($conf);
foreach (PhabricatorEnv::getEnvConfig('load-libraries') as $library) {
phutil_load_library($library);
}