Project

General

Profile

Bug #100215

Updated by Torben Hansen about 1 year ago

The redirect by @refererDomains@ is broken since 2019, because: 

 1) The first regex only checks for non-SSL domains - see: @preg_match('#^http://([[:alnum:]._-]+)/#', $url, $match)@ 
 2) The second regex contains is wrong (exception: @Unknown (@Unknown modifier '/'@) - see: @preg_match('/(?:^|\\.)' . $domain . '$/', $redirectDomain)@

Back