1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Fixes #1179 - Icon overlap problem.

This commit is contained in:
Cameron
2016-01-30 17:24:03 -08:00
parent 9de74a9149
commit ee28ffb622

View File

@@ -633,7 +633,7 @@ class adminstyle_infopanel
if (getperms($icon['perms']))
{
$checked = (varset($user_pref['core-infopanel-mye107']) && in_array($key, $user_pref['core-infopanel-mye107'])) ? true : false;
$text .= "<div class='left f-left list field-spacer checkbox' style='display:block;height:24px;width:200px;'>
$text .= "<div class='left f-left list field-spacer form-inline' style='display:block;height:24px;width:200px;'>
".$icon['icon'].' '.$frm->checkbox_label($icon['title'], 'e-mye107[]', $key, $checked)."</div>";
}
@@ -646,7 +646,7 @@ class adminstyle_infopanel
if (getperms($icon['perms']))
{
$checked = (in_array('p-'.$key, $user_pref['core-infopanel-mye107'])) ? true : false;
$text .= "<div class='left f-left list field-spacer checkbox' style='display:block;height:24px;width:200px;'>
$text .= "<div class='left f-left list field-spacer form-inline' style='display:block;height:24px;width:200px;'>
".$icon['icon'].$frm->checkbox_label($icon['title'], 'e-mye107[]', $key, $checked)."</div>";
}
}