Imported From: http://groups.google.com/group/in-portal-bugs/browse_thread/thread/477e8e3bb9610a8d#
core/kernel/application.php:1540
______
function HREF($t, $prefix = '', $params = null, $index_file = null)
______
default-defining variable $params here that way causes code at line
1566:
______
if (array_key_exists('use_section', $params)) {
______
to trigger error: "array_key_exists(): The second argument should be
either an array or an object".
According to general development rules this should be changed either
to:
______
function HREF($t, $prefix = '', $params = Array(), $index_file =
null)
______
or:
______
if (is_array($params) && array_key_exists('use_section', $params)) {
______