1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-07 12:28:28 +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(); $task_ids = array();
$paste_ids = array(); $paste_ids = array();
$commit_names = array(); $commit_names = array();
$vote_ids = array();
if (preg_match_all($pattern, $message, $matches, PREG_SET_ORDER)) { if (preg_match_all($pattern, $message, $matches, PREG_SET_ORDER)) {
foreach ($matches as $match) { foreach ($matches as $match) {
@ -67,7 +68,7 @@ class PhabricatorIRCObjectNameHandler extends PhabricatorIRCHandler {
$paste_ids[] = $match[2]; $paste_ids[] = $match[2];
break; break;
case 'V': case 'V':
$vote_idsp[] = $match[2]; $vote_ids[] = $match[2];
break; break;
} }
} }