Add title attribute to settings menu

pull/198/head
Aleksander Machniak 10 years ago
parent ebc9877def
commit 7e309b872f

@ -17,7 +17,7 @@
*/
$labels = array();
$labels['changepasswd'] = 'Change Password';
$labels['changepasswd'] = 'Change password';
$labels['curpasswd'] = 'Current Password:';
$labels['newpasswd'] = 'New Password:';
$labels['confpasswd'] = 'Confirm New Password:';

@ -75,7 +75,14 @@ class password extends rcube_plugin
function settings_actions($args)
{
// register as settings action
$args['actions'][] = array('action' => 'plugin.password', 'class' => 'password', 'label' => 'password', 'domain' => 'password');
$args['actions'][] = array(
'action' => 'plugin.password',
'class' => 'password',
'label' => 'password',
'title' => 'changepasswd',
'domain' => 'password',
);
return $args;
}

Loading…
Cancel
Save