Index: branches/5.3.x/core/kernel/utility/http_query.php =================================================================== diff -u -N -r15902 -r15910 --- branches/5.3.x/core/kernel/utility/http_query.php (.../http_query.php) (revision 15902) +++ branches/5.3.x/core/kernel/utility/http_query.php (.../http_query.php) (revision 15910) @@ -1,6 +1,6 @@ Application->getUnitConfig($prefix)->getQueryString(Array ()); - - if ( !$ret && preg_match('/(.*?)-(.*)/', $prefix, $regs) ) { - // "#prefix" (new format), "prefix" (old format) - return $this->_getQueryString('#' . $regs[2]); - } - - return $ret; + return $this->Application->getUnitConfig($prefix)->getQueryString(Array ()); } /** - * Returns query string (with safety check against missing prefixes) - * - * @param string $prefix - * @return Array - */ - private function _getQueryString($prefix) - { - if ( $this->Application->prefixRegistred($prefix) ) { - return $this->Application->getUnitConfig($prefix)->getQueryString(); - } - - return substr($prefix, 0, 1) == '#' ? $this->_getQueryString( substr($prefix, 1) ) : Array (); - } - - /** * Removes specials from request * * @param Array $array