mirror of
https://github.com/e107inc/e107.git
synced 2025-04-21 13:11:52 +02:00
Fix decoding of 'legacy' link with multiple '='
This commit is contained in:
parent
8588f13d2d
commit
90229e49b9
@ -18,7 +18,7 @@ global $pref;
|
||||
/* Fix for people using link=external= */
|
||||
if(strpos($parm,"external=") !== FALSE)
|
||||
{
|
||||
list($extras,$parm) = explode("=",$parm);
|
||||
list($extras,$parm) = explode("=",$parm,2);
|
||||
$parm = $parm." ".$extras;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user