mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 20:10: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:
parent
8b965b543e
commit
79b5343d6b
1 changed files with 1 additions and 1 deletions
|
@ -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!");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue