aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-30 22:57:43 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-30 22:57:43 +0200
commit669a6c3e3d29688b69bb0fb39dd7d4099c78ffbd (patch)
tree339de43c941f17c734f51256d03b186da276891e
parenta6a2d1bc2d85157bdd1e79fd5c853b30eeccd02d (diff)
parent505b26ed86840f98786705515097bb08da9e09ef (diff)
downloadforums-669a6c3e3d29688b69bb0fb39dd7d4099c78ffbd.tar
forums-669a6c3e3d29688b69bb0fb39dd7d4099c78ffbd.tar.gz
forums-669a6c3e3d29688b69bb0fb39dd7d4099c78ffbd.tar.bz2
forums-669a6c3e3d29688b69bb0fb39dd7d4099c78ffbd.tar.xz
forums-669a6c3e3d29688b69bb0fb39dd7d4099c78ffbd.zip
Merge pull request #2512 from bantu/ticket/11266
[ticket/11266] Better message for when composer dependencies are missing... * bantu/ticket/11266: [ticket/11266] Better message for when composer dependencies are missing.
-rw-r--r--phpBB/includes/startup.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/includes/startup.php b/phpBB/includes/startup.php
index 65a193193a..50fcd11bee 100644
--- a/phpBB/includes/startup.php
+++ b/phpBB/includes/startup.php
@@ -177,7 +177,11 @@ else
{
if (!file_exists($phpbb_root_path . 'vendor/autoload.php'))
{
- trigger_error('You have not set up composer dependencies. See http://getcomposer.org/.', E_USER_ERROR);
+ trigger_error(
+ 'Composer dependencies have not been set up yet, run ' .
+ "'php ../composer.phar install' from the phpBB directory to do so.",
+ E_USER_ERROR
+ );
}
require($phpbb_root_path . 'vendor/autoload.php');
}