Merge pull request #270 from corbosman/master

move header block inside loop
pull/271/head
Aleksander Machniak 9 years ago
commit 64d79b82aa

@ -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']);

Loading…
Cancel
Save