mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-07 12:28:28 +01:00
fixes
This commit is contained in:
parent
dd9b15600a
commit
003694458b
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue