Thomas Bruederli
2015-04-17 a3644638aaf0418598196a870204e0b632a4c8ad
program/steps/settings/func.inc
@@ -73,6 +73,13 @@
    list($list, $cols) = rcmail_user_prefs();
    // add section keys as class name to the primary col
    array_walk($list, function(&$item, $key) use ($attrib) {
        if (!isset($item['section_class'])) {
            $item['section_class'] = trim($attrib['classprefix'] . $key);
        }
    });
    // create XHTML table
    $out = $RCMAIL->table_output($attrib, $list, $cols, 'id');
@@ -845,6 +852,20 @@
                );
            }
            if (!isset($no_override['sig_below'])) {
                if (!$current) {
                    continue 2;
                }
                $field_id = 'rcmfd_sig_below';
                $input    = new html_checkbox(array('name' => '_sig_below', 'id' => $field_id, 'value' => 1));
                $blocks['sig']['options']['sig_below'] = array(
                    'title'   => html::label($field_id, rcube::Q($RCMAIL->gettext('sigbelow'))),
                    'content' => $input->show($RCMAIL->config->get('sig_below') ? 1 : 0),
                );
            }
            if (!isset($no_override['strip_existing_sig'])) {
                if (!$current) {
                    continue 2;