Skip to content
Snippets Groups Projects
Commit 3516b58b authored by Johannes Ernst's avatar Johannes Ernst
Browse files

Duh, no 'next' in PHP.

Use === instead of == for extra paranoia.
parent b1867dc8
No related branches found
No related tags found
No related merge requests found
......@@ -90,12 +90,12 @@ class TrustedDomainHelper {
// If a value contains a *, apply glob-style matching. Any second * is ignored.
foreach ($trustedList as $trusted) {
if($trusted == '*') {
if($trusted === '*') {
return true;
}
$star = strpos($trusted, '*');
if($star === false) {
next;
break;
}
if($star === 0) {
if(strrpos($domain, substr($trusted, 1)) !== false) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment