1
0
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:
e107steved
2008-01-12 18:52:16 +00:00
parent 8588f13d2d
commit 90229e49b9

View File

@@ -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;
} }