mirror of
https://github.com/e107inc/e107.git
synced 2025-08-02 20:57:26 +02:00
Fix decoding of 'legacy' link with multiple '='
This commit is contained in:
@@ -18,7 +18,7 @@ global $pref;
|
|||||||
/* Fix for people using link=external= */
|
/* Fix for people using link=external= */
|
||||||
if(strpos($parm,"external=") !== FALSE)
|
if(strpos($parm,"external=") !== FALSE)
|
||||||
{
|
{
|
||||||
list($extras,$parm) = explode("=",$parm);
|
list($extras,$parm) = explode("=",$parm,2);
|
||||||
$parm = $parm." ".$extras;
|
$parm = $parm." ".$extras;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user