mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 03:50:54 +01:00
Fix a bad %d for PHID
Summary: D1174 caught this issue -- we mean to load all //your// rules, but actually load //all// rules. Use %s correctly. Test Plan: Hit /herald/rule/ without an exception. Reviewers: fmoo, btrahan, jungejason Reviewed By: btrahan CC: aran, epriestley, btrahan Differential Revision: 1203
This commit is contained in:
parent
6f1dfbb658
commit
2efd8fe971
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ class HeraldRuleController extends HeraldController {
|
||||||
}
|
}
|
||||||
|
|
||||||
$all_rules = id(new HeraldRule())->loadAllWhere(
|
$all_rules = id(new HeraldRule())->loadAllWhere(
|
||||||
'authorPHID = %d AND contentType = %s',
|
'authorPHID = %s AND contentType = %s',
|
||||||
$rule->getAuthorPHID(),
|
$rule->getAuthorPHID(),
|
||||||
$rule->getContentType());
|
$rule->getContentType());
|
||||||
$all_rules = mpull($all_rules, 'getName', 'getID');
|
$all_rules = mpull($all_rules, 'getName', 'getID');
|
||||||
|
|
Loading…
Reference in a new issue