Fatal error after jupgrade in external menu link - Joomla! Forum - community, help and support
ref. viewtopic.php?f=615&t=783205&p=2965740
the user reports fatal error on upgraded site after has gone external link option 'new without navigation' produces popup window. unable reproduce error in 2.5.7 test site, installed scratch, though code in line 36 of modules/mod_menu/temp/default_url.php identical, looks get() called on non-object.
here fix makes sure get() performed on object:i not see purpose parameter 'window_open' serve.
even though behavior by-product of upgrade, should still report it?
the user reports fatal error on upgraded site after has gone external link option 'new without navigation' produces popup window. unable reproduce error in 2.5.7 test site, installed scratch, though code in line 36 of modules/mod_menu/temp/default_url.php identical, looks get() called on non-object.
here fix makes sure get() performed on object:
code: select all
// $options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,'.$params->get('window_open');
$options = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,'.$item->params->get('window_open');
even though behavior by-product of upgrade, should still report it?
Comments
Post a Comment