mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 00:32:42 +01:00
Minor, use self:: instead of static:: for PHP 5.2 compatibility. See https://github.com/facebook/phabricator/issues/133
This commit is contained in:
parent
92fac31215
commit
3e18acef9f
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ final class PhabricatorJumpNavHandler {
|
|||
return id(new AphrontRedirectResponse())
|
||||
->setURI('/p/'.$matches[1].'/');
|
||||
case 'project':
|
||||
$project = static::findCloselyNamedProject($matches[1]);
|
||||
$project = self::findCloselyNamedProject($matches[1]);
|
||||
if ($project) {
|
||||
return id(new AphrontRedirectResponse())
|
||||
->setURI('/project/view/'.$project->getID().'/');
|
||||
|
|
Loading…
Reference in a new issue