Closed (fixed)
Project:
Pontomail Webmail Client
Version:
master
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
20 Aug 2006 at 11:13 UTC
Updated:
3 Sep 2006 at 19:45 UTC
On admin/settings/pontomail the option Log Sent Mail forgets it's value after submitting.
So I checked the form and it seems to be corrupted - in 4.7 too.
$form['pontomail_options'] = array('#type' => 'checkbox',
'#title' => t('Log Sent Mail'),
'#description' => t('This will log all sent mail that is sent by all users. Users will then be
able to view any mail they have sent through Pontomail Webmail'));
should be something like
$form['pontomail_options']['pontomail_log_sent'] = array('#type' => 'checkbox',
'#title' => t('Log Sent Mail'),
'#default_value' => variable_get('pontomail_log_sent', 0),
'#description' => t('This will log all sent mail that is sent by all users. Users will then be
able to view any mail they have sent through Pontomail Webmail'));
But it doesn't seem to be functional anyway by now - or am I wrong here?
vg
Comments
Comment #1
Souvent22 commentedYou are correct. Must of been something I missed late one night. I will commit a fix/patch for this today.
Comment #2
Souvent22 commentedFixed.
Comment #3
Souvent22 commentedComment #4
Souvent22 commentedComment #5
(not verified) commented