1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Minor, fix a name collision between HeraldRuleController and PhabricatorController.

Auditors: btrahan
This commit is contained in:
epriestley 2012-08-15 14:11:40 -07:00
parent 1bf338170a
commit f5e738b7ca

View file

@ -100,7 +100,7 @@ final class HeraldRuleController extends HeraldController {
$must_match_selector = $this->renderMustMatchSelector($rule); $must_match_selector = $this->renderMustMatchSelector($rule);
$repetition_selector = $this->renderRepetitionSelector($rule); $repetition_selector = $this->renderRepetitionSelector($rule);
$handles = $this->loadHandles($rule); $handles = $this->loadHandlesForRule($rule);
require_celerity_resource('herald-css'); require_celerity_resource('herald-css');
@ -448,7 +448,7 @@ final class HeraldRuleController extends HeraldController {
)); ));
} }
private function loadHandles($rule) { private function loadHandlesForRule($rule) {
$phids = array(); $phids = array();
foreach ($rule->getActions() as $action) { foreach ($rule->getActions() as $action) {