Skip to content

Commit 8bd1f2b

Browse files
Merge pull request #263 from CodeForPhilly/develop
Release: v3.2.4
2 parents 4f24e65 + 1696f6b commit 8bd1f2b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.holo/sources/mueller.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[holosource]
22
url = "https://github.com/JarvusInnovations/emergence-mueller.git"
3-
ref = "refs/tags/v1.0.2"
3+
ref = "refs/tags/v1.0.3"

php-config/Emergence/Mueller/Investigator.config.d/laddr.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@
88

99
Investigator::$tests['email-invalid'] = false;
1010
Investigator::$tests['ip-whitelist'] = false;
11+
Investigator::$tests['ip-blacklist'] = false;
12+
Investigator::$tests['session-multiple'] = false;
1113

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

@@ -33,6 +35,7 @@
3335
if (
3436
stripos($Comment['Message'], 'http://') !== false
3537
|| stripos($Comment['Message'], 'https://') !== false
38+
|| stripos($Comment['Message'], 'www.') !== false
3639
) {
3740
return true;
3841
}

0 commit comments

Comments
 (0)