diff --git a/e107_admin/includes/flexpanel.php b/e107_admin/includes/flexpanel.php index 55aa7d300..e46e2bc09 100644 --- a/e107_admin/includes/flexpanel.php +++ b/e107_admin/includes/flexpanel.php @@ -489,6 +489,13 @@ class adminstyle_flexpanel extends adminstyle_infopanel case 'wider_sidebar': case 'default': default: + + if($id == 'e-addon-updates') + { + $default['area'] = 'menu-area-01'; + $default['weight'] = 1; + } + if($id == 'core-infopanel_help') { $default['area'] = 'menu-area-01'; diff --git a/e107_core/shortcodes/batch/admin_shortcodes.php b/e107_core/shortcodes/batch/admin_shortcodes.php index bcfcc09de..f2fba2a23 100644 --- a/e107_core/shortcodes/batch/admin_shortcodes.php +++ b/e107_core/shortcodes/batch/admin_shortcodes.php @@ -1337,10 +1337,11 @@ Inverse 10 10 { return null; } + $ns = e107::getRender(); $tp = e107::getParser(); - - return e107::getRender()->tablerender($tp->toGlyph('fa-arrow-circle-o-down').'Updates Available',$text,'default',true); + $ns->setUniqueId('e-addon-updates'); + return $ns->tablerender($tp->toGlyph('fa-arrow-circle-o-down').'Updates Available',$text,'default',true); }