summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcorbosman <cor@xs4all.net>2015-04-03 09:43:05 +0200
committercorbosman <cor@xs4all.net>2015-04-03 09:43:05 +0200
commitd9c22ab66d0580cf03523c989d75e43850d0555a (patch)
tree843b225505e0a200d4be3155e2f41a43a5200b84
parent3d6ce950097e591017514fb9400839c89fd589d9 (diff)
move header block inside loop
-rw-r--r--program/steps/settings/func.inc11
1 files changed, 6 insertions, 5 deletions
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc
index 087b23610..46aed3019 100644
--- a/program/steps/settings/func.inc
+++ b/program/steps/settings/func.inc
@@ -1261,13 +1261,14 @@ function rcmail_user_prefs($current = null)
unset($sections[$idx]);
else
$sections[$idx]['blocks'] = $data['blocks'];
- }
- $data = $RCMAIL->plugins->exec_hook('preferences_section_header',
- array('section' => $sect['id'], 'header' => '', 'current' => $current));
+ // allow plugins to add a header to each section
+ $data = $RCMAIL->plugins->exec_hook('preferences_section_header',
+ array('section' => $sect['id'], 'header' => '', 'current' => $current));
- if(!empty($data['header'])) {
- $sections[$idx]['header'] = $data['header'];
+ if(!empty($data['header'])) {
+ $sections[$idx]['header'] = $data['header'];
+ }
}
return array($sections, $plugin['cols']);