Navigation Menu

Skip to content

Commit

Permalink
oops, thanks salathe
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrael committed Jun 10, 2014
1 parent 957a4a8 commit acbafe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github-webhook.php
Expand Up @@ -32,7 +32,7 @@
// if we somehow end up receiving a PR for a repo not matching anything send it to systems so that we can fix it
$to = 'systems@php.net';
foreach ($config['repos'] as $repoPrefix => $email) {
if (strpos($repoName, $repoPrefix) !== 0) {
if (strpos($repoName, $repoPrefix) === 0) {
$to = $email;
}
}
Expand Down

0 comments on commit acbafe1

Please sign in to comment.