Changes in [3380:36bd6b2f5e57:3375:f3f69bda3bd0]
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
.hgtags
r3379 r3317 31 31 d23a41b088d94d55829a1644eedcc16f626d03ce 2.10.1 32 32 e8ad524d494dfbff909875b953db9f945a0f999c 2.10.2 33 e4744a9b44d89e52cd5038da93f8453f62a62a4f 2.10.3 -
CHANGELOG
r3377 r3316 1 Dotclear 2.10.3 - 2016-11-012 ===========================================================3 * Security: Fix CVE-2016-7903: Password Reset Address Spoof — Thank's Hongkun Zeng for report4 * Security: Fix CVE-2016-7902: Media Manager, unrestricted File Upload — Thank's Hongkun Zeng for report5 * CSP: Cope with external sources used in editor's iframe to preview public external content6 * Fix: Cope with post.post_position field during flat import7 * Fix: Prevents precondition failed during currently activated theme update8 * Fix: Remove unecessary header (cope by dotclear) in page plugin9 * Fix: Let some proxies playing with standard http and https ports10 * Fix: Let SSL runs through a proxy, it may be ok, sometimes11 * 🐛 → Various bugs and typos fixed12 13 1 Dotclear 2.10.2 - 2016-08-17 14 2 =========================================================== -
admin/auth.php
r3358 r3352 88 88 $recover_key = $core->auth->setRecoverKey($user_id,$user_email); 89 89 90 $subject = mail::B64Header('Dot clear '.__('Password reset'));90 $subject = mail::B64Header('DotClear '.__('Password reset')); 91 91 $message = 92 92 __('Someone has requested to reset the password for the following site and username.')."\n\n". … … 113 113 $recover_res = $core->auth->recoverUserPassword($akey); 114 114 115 $subject = mb_encode_mimeheader('Dot clear '.__('Your new password'),'UTF-8','B');115 $subject = mb_encode_mimeheader('DotClear '.__('Your new password'),'UTF-8','B'); 116 116 $message = 117 117 __('Username:').' '.$recover_res['user_id']."\n". … … 119 119 preg_replace('/\?(.*)$/','',$page_url); 120 120 121 $headers[] = 'From: '.(defined('DC_ADMIN_MAILFROM') && DC_ADMIN_MAILFROM ? DC_ADMIN_MAILFROM : 'dotclear@local');121 $headers[] = 'From: dotclear@'.$_SERVER['HTTP_HOST']; 122 122 $headers[] = 'Content-Type: text/plain; charset=UTF-8;'; 123 123
Note: See TracChangeset
for help on using the changeset viewer.