mrtopher / dashEE

Control panel dashboard framework for EE CMS.
37 stars 5 forks source link

Not redirecting admins shows php notice #24

Closed GDmac closed 11 years ago

GDmac commented 11 years ago

Line 138 in the extension gives a notice / error about undefined index. https://github.com/mrtopher/dashEE/blob/master/third_party/dashee/ext.dashee.php#L138

Should be:

// if($u['group_id'] == 1 && $this->settings['redirect_admins'][0] != 'yes') return;
   if($u['group_id'] == 1 && empty($this->settings['redirect_admins'][0])) return;
mrtopher commented 11 years ago

Updated, thanks.