<?php

class d3_oxseodecoder_fix extends d3_oxseodecoder_fix_parent
{
    public function parseStdUrl($sUrl)
    {
        $oStr = getStr();
        $aRet = array();
        $sUrl = $oStr->html_entity_decode( $sUrl );

        if (($iPos = strpos($sUrl, '?')) !== false) {
            parse_str( $oStr->substr( $sUrl, $iPos+1 ), $aRet );
        }

        return $aRet;
    }
}