| 1d045709 | 02-Nov-2011 |
Andreas Gohr <andi@splitbrain.org> |
The Mailer class should work now
It's still not real world tested but the output *looks* right.
Plugin hook support is still missing. |
| bb01c27c | 02-Nov-2011 |
Andreas Gohr <andi@splitbrain.org> |
Added Mailer class |
| abb56b33 | 28-Oct-2011 |
Andreas Gohr <gohr@cosmocode.de> |
Check password expiry times in Active Directory backend
When a user logs in, the password expiry time is checked and compared to the $conf['auth']['ad']['expirywarn'] setting (in days). If the passw
Check password expiry times in Active Directory backend
When a user logs in, the password expiry time is checked and compared to the $conf['auth']['ad']['expirywarn'] setting (in days). If the password is about to expire in the specified timeframe, a warning is issued on login.
This patch adds a new method to the adLDAP class for querying domain parameters.
show more ...
|
| cc204bbd | 31-Oct-2011 |
Andreas Gohr <gohr@cosmocode.de> |
honor autopasswd setting for resend password
When autopasswd is disabled, the resend password option now asks for a new password instead of autogenerating a new one and sending it by mail.
Note to
honor autopasswd setting for resend password
When autopasswd is disabled, the resend password option now asks for a new password instead of autogenerating a new one and sending it by mail.
Note to translators: the wording for btn_resendpwd and resendpwd changed to be more universal. English and German language files where updated - other languages need to be adjusted.
Conflicts:
inc/lang/en/lang.php
show more ...
|
| 222298bc | 31-Oct-2011 |
Andreas Gohr <gohr@cosmocode.de> |
Do not send empty changes to the AD backend
This fixes password changing operations: password change and user modification are two different operations on the AD backend - the user modification shou
Do not send empty changes to the AD backend
This fixes password changing operations: password change and user modification are two different operations on the AD backend - the user modification should not be done on password only changes.
show more ...
|
| d5a9514c | 30-Oct-2011 |
Adrian Lang <mail@adrianlang.de> |
Remove references to (un)?subscribens. |
| 3629bc8c | 30-Oct-2011 |
Adrian Lang <mail@adrianlang.de> |
MediaManager: Check DOKU_PREF cookie value for validness |
| 1888d1bb | 29-Oct-2011 |
Hakan Sandell <sandell.hakan@gmail.com> |
Removed faulty <span> tags from translations (FS#2360) |
| ad7ad47e | 27-Oct-2011 |
Martin Michalek <michalek.dev@gmail.com> |
Slovak language update |
| d9edf351 | 27-Oct-2011 |
Kiril Velikov <neohidra@gmail.com> |
Bulgarian language update |
| 12e233d3 | 27-Oct-2011 |
Pierre Corell <info@joomla-praxis.de> |
German language updates |
| 3bc1b86f | 23-Oct-2011 |
Martin Michalek <michalek.dev@gmail.com> |
Slovak language update |
| 71861ac4 | 23-Oct-2011 |
Jon Magne Bøe <jonmagne@gmail.com> |
Norwegian language update |
| 5446f3ff | 22-Oct-2011 |
Dominik Eckelmann <deckelmann@gmail.com> |
use correct phpdoc @return tag. |
| 434f5921 | 17-Oct-2011 |
Hakan Sandell <sandell.hakan@gmail.com> |
HTML compliant fix for missing ul wrapper in TOC (FS#2328) |
| e10e770c | 16-Oct-2011 |
Andreas Gohr <andi@splitbrain.org> |
Upgraded SimplePie library to 1.2.1
From the release notes: This release fixes a few bugs, including a major URL parsing bug, where URLs with query strings were parsed incorrectly. |
| 8071beaa | 15-Oct-2011 |
Andreas Gohr <andi@splitbrain.org> |
bind security token to username
This makes the security token more robust agains session fixation attacks. A CSRF warning will no longer abort a page save but lead to the preview mode to avoid infor
bind security token to username
This makes the security token more robust agains session fixation attacks. A CSRF warning will no longer abort a page save but lead to the preview mode to avoid information loss when a user logs in during editing (eg in another tab).
show more ...
|
| f20ead66 | 15-Oct-2011 |
Andreas Gohr <andi@splitbrain.org> |
readded delete in popup and link to full mediamanager FS#2347 |
| 335d098a | 15-Oct-2011 |
Johan Guilbaud <guilbaud.johan@gmail.com> |
French language update |
| cb5d4146 | 15-Oct-2011 |
Aivars Miska <allefm@gmail.com> |
Latvian language update |
| 85fef7e2 | 15-Oct-2011 |
Andreas Gohr <andi@splitbrain.org> |
allow page unlocking based on session IDs FS#2262 |
| c7e90e3f | 15-Oct-2011 |
Anika Henke <anika@selfthinker.org> |
show accesskey also on actionlink title and add accesskey parameter only if a key is defined (FS#2226) |
| 32261ab5 | 15-Oct-2011 |
Christopher Smith <chris@jalakai.co.uk> |
FS#2291 replace space with non-breaking space in utf8 special chars |
| 87671313 | 15-Oct-2011 |
Hakan Sandell <sandell.hakan@gmail.com> |
Fixed missing ul wrapper in TOC (FS#2328) |
| d8f7a7f3 | 15-Oct-2011 |
Andreas Gohr <andi@splitbrain.org> |
replace unset with array_pop
unset does not reset the Array's internal pointer which messes up later calls. array_pop is still much faster than array_splice |