1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-19 12:00:55 +01:00

Remove "@" from resource map include since there is no reason to silence this file and it makes it impossible to find syntax errors.

This commit is contained in:
epriestley 2011-06-09 12:30:28 -07:00
parent 8b965b543e
commit 79b5343d6b

View file

@ -27,7 +27,7 @@ final class CelerityResourceMap {
if (empty(self::$instance)) {
self::$instance = new CelerityResourceMap();
$root = phutil_get_library_root('phabricator');
$ok = @include_once $root.'/__celerity_resource_map__.php';
$ok = include_once $root.'/__celerity_resource_map__.php';
if (!$ok) {
throw new Exception("Failed to load Celerity resource map!");
}