From: Brion Vibber Date: Wed, 1 Dec 2010 21:04:18 +0000 (-0800) Subject: Ticket #2912: move 'I want to post notices by email" checkbox up from the email ... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3048f9100dcaab0c929cfb2e2950f4da74181847;p=quix0rs-gnu-social.git Ticket #2912: move 'I want to post notices by email" checkbox up from the email *output* prefs up into the box for the address to post to, so they're next to each other. --- diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 5a816e5c0a..02b6892e0f 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -149,6 +149,16 @@ class EmailsettingsAction extends AccountSettingsAction $this->elementStart('fieldset', array('id' => 'settings_email_incoming')); // TRANS: Form legend for incoming e-mail settings form. $this->element('legend', null, _('Incoming email')); + + $this->elementStart('ul', 'form_data'); + $this->elementStart('li'); + $this->checkbox('emailpost', + // TRANS: Checkbox label in e-mail preferences form. + _('I want to post notices by email.'), + $user->emailpost); + $this->elementEnd('li'); + $this->elementEnd('ul'); + if ($user->incomingemail) { $this->elementStart('p'); $this->element('span', 'address', $user->incomingemail); @@ -211,14 +221,6 @@ class EmailsettingsAction extends AccountSettingsAction _('Allow friends to nudge me and send me an email.'), $user->emailnotifynudge); $this->elementEnd('li'); - if (common_config('emailpost', 'enabled')) { - $this->elementStart('li'); - $this->checkbox('emailpost', - // TRANS: Checkbox label in e-mail preferences form. - _('I want to post notices by email.'), - $user->emailpost); - $this->elementEnd('li'); - } $this->elementStart('li'); $this->checkbox('emailmicroid', // TRANS: Checkbox label in e-mail preferences form.