1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-31 00:48:21 +01:00
This commit is contained in:
moos3 2011-08-23 21:21:00 -04:00
parent dd9b15600a
commit 003694458b

View file

@ -53,6 +53,7 @@ class PhabricatorIRCObjectNameHandler extends PhabricatorIRCHandler {
$task_ids = array();
$paste_ids = array();
$commit_names = array();
$vote_ids = array();
if (preg_match_all($pattern, $message, $matches, PREG_SET_ORDER)) {
foreach ($matches as $match) {
@ -67,7 +68,7 @@ class PhabricatorIRCObjectNameHandler extends PhabricatorIRCHandler {
$paste_ids[] = $match[2];
break;
case 'V':
$vote_idsp[] = $match[2];
$vote_ids[] = $match[2];
break;
}
}