mirror of
https://github.com/e107inc/e107.git
synced 2025-08-04 13:47:31 +02:00
Stupid strpos parm order :)
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
// $Id: url.sc,v 1.1 2008-11-24 18:06:03 mcfly_e107 Exp $
|
// $Id: url.sc,v 1.2 2008-11-24 18:18:47 mcfly_e107 Exp $
|
||||||
$e107 = e107::getInstance();
|
$e107 = e107::getInstance();
|
||||||
list($part, $section, $type, $parms) = explode('::', $parm, 4);
|
list($part, $section, $type, $parms) = explode('::', $parm, 4);
|
||||||
if(strpos('=', $parms) !== false)
|
if(strpos($parms, '=') !== false)
|
||||||
{
|
{
|
||||||
parse_str($parms, $p);
|
parse_str($parms, $p);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user