Skip to content

Commit

Permalink
Merge pull request #263 from CodeForPhilly/develop
Browse files Browse the repository at this point in the history
Release: v3.2.4
  • Loading branch information
themightychris committed Oct 18, 2022
2 parents 4f24e65 + 1696f6b commit 8bd1f2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .holo/sources/mueller.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[holosource]
url = "https://github.com/JarvusInnovations/emergence-mueller.git"
ref = "refs/tags/v1.0.2"
ref = "refs/tags/v1.0.3"
5 changes: 4 additions & 1 deletion php-config/Emergence/Mueller/Investigator.config.d/laddr.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@

Investigator::$tests['email-invalid'] = false;
Investigator::$tests['ip-whitelist'] = false;
Investigator::$tests['ip-blacklist'] = false;
Investigator::$tests['session-multiple'] = false;

Investigator::$tests['has-about-url'] = [
'points' => -100,
'function' => function (IUser $User, array &$userCache) {
return $User->About && (stripos($User->About, 'http://') !== false || stripos($User->About, 'https://') !== false);
return $User->About && (stripos($User->About, 'http://') !== false || stripos($User->About, 'https://') !== false || stripos($User->About, 'www.') !== false);
}
];

Expand All @@ -33,6 +35,7 @@
if (
stripos($Comment['Message'], 'http://') !== false
|| stripos($Comment['Message'], 'https://') !== false
|| stripos($Comment['Message'], 'www.') !== false
) {
return true;
}
Expand Down

0 comments on commit 8bd1f2b

Please sign in to comment.