Changeset 2488 in subversion
- Timestamp:
- May 15, 2009 2:36:04 PM (4 years ago)
- Location:
- trunk/roundcubemail/plugins/password
- Files:
-
- 3 edited
-
localization/en_US.inc (modified) (1 diff)
-
localization/nl_NL.inc (modified) (1 diff)
-
password.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/plugins/password/localization/en_US.inc
r2407 r2488 10 10 $messages['nopassword'] = 'Please input new password.'; 11 11 $messages['nocurpassword'] = 'Please input current password.'; 12 $messages['passwordincorrect ly'] = 'Current password incorrectly.';13 $messages['passwordinconsistency'] = ' Inconsistency of password, please try again.';12 $messages['passwordincorrect'] = 'Current password incorrect.'; 13 $messages['passwordinconsistency'] = 'Passwords do not match, please try again.'; 14 14 $messages['nocryptfunction'] = 'The server is missing a function to encrypt your password - contact your system adminstrator.'; 15 15 $messages['internalerror'] = 'The server is updated more than one row in the database. This could be bad for all users. Contact your system adminstrator.'; -
trunk/roundcubemail/plugins/password/localization/nl_NL.inc
r2457 r2488 10 10 $messages['nopassword'] = 'Vul een wachtwoord in.'; 11 11 $messages['nocurpassword'] = 'vul het huidige wachtwoord in.'; 12 $messages['passwordincorrect ly'] = 'Huidig wachtwoord is onjuist.';12 $messages['passwordincorrect'] = 'Huidig wachtwoord is onjuist.'; 13 13 $messages['passwordinconsistency'] = 'Wachtwoorden komen niet overeen, probeer het opnieuw.'; 14 14 $messages['nocryptfunction'] = 'De server mist een functie om uw wachtwoord et beveiligen - neem contact op met uw systeembeheerder.'; -
trunk/roundcubemail/plugins/password/password.php
r2435 r2488 14 14 * password_confirm_current - boolean to determine whether current password 15 15 * is required to change password. Defaults to FALSE. 16 * db_passwd_dsn - is the PEAR database DSN for performing the query. Defaults16 * password_db_dsn - is the PEAR database DSN for performing the query. Defaults 17 17 * to the default databse setting in config/db.inc.php 18 18 * password_query - the SQL query used to change the password. … … 209 209 $sql = "SELECT update_passwd(%c, %u)"; 210 210 211 if ($dsn = $cfg->get(' db_passwd_dsn')) {211 if ($dsn = $cfg->get('password_db_dsn')) { 212 212 $db = new rcube_mdb2($dsn, '', FALSE); 213 213 $db->set_debug((bool)$cfg->get('sql_debug')); … … 216 216 $db = rcmail::get_instance()->get_dbh(); 217 217 } 218 218 219 if ($err = $db->is_error()) 219 220 return $err;
Note: See TracChangeset
for help on using the changeset viewer.
