| 10b5c32d | 30-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
fixed merge error in inc/auth.php
merged the wrong change here |
| eb3ce0d5 | 25-Nov-2012 |
Kazutaka Miyasaka <kazmiya@gmail.com> |
Fix case-insensitive match in ACL checking
ACL checking of DokuWiki is currently always case-sensitive regardless of auth backend setting ($auth->isCaseSensitive). This commit enables case-insensiti
Fix case-insensitive match in ACL checking
ACL checking of DokuWiki is currently always case-sensitive regardless of auth backend setting ($auth->isCaseSensitive). This commit enables case-insensitive match in the same way of auth_isMember().
show more ...
|
| b7183bb5 | 24-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
GeSHi update to 1.0.8.11 |
| 91effd8d | 23-Nov-2012 |
Dominik Eckelmann <deckelmann@gmail.com> |
ignore empty header on mail sending |
| 1f61f312 | 23-Nov-2012 |
Dominik Eckelmann <deckelmann@gmail.com> |
remove empty BCC/CC mail headers
Empty BCC/CC headers may cause errors on IIS. |
| 78f0e832 | 23-Nov-2012 |
Leandro Regueiro <leandro.regueiro@gmail.com> |
Galician language update |
| 3755fc25 | 15-Mar-2011 |
Tom N Harris <tnharris@whoopdedo.org> |
Combine subsequent calls to strtr into a single transformation |
| 2c2ee174 | 18-Nov-2012 |
Anika Henke <anika@selfthinker.org> |
changed semicolon to colon in link to welcome page to make it less confusing |
| c786a1b6 | 18-Nov-2012 |
Anika Henke <anika@selfthinker.org> |
fixed wrong sidebar showing in namespaces when sidebar is disabled |
| de78e4ef | 12-Nov-2012 |
Anael Mobilia <anael@anael.eu> |
French language update |
| 649ee76f | 12-Nov-2012 |
Jakub <j@kub.cz> |
Czech language update |
| 3161005d | 12-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
check for unicode preg capabilities in UTF-8 lib FS#2636
We now have two defines for checking for UTF-8 and Unicode property support in PREG and use them to work around FS#2636 on older systems. |
| 2657e468 | 09-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
authmysql fixes
* use proper plugin config * code/PHP5 cleanup |
| 46b991a3 | 09-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
merge old auth style configs with plugin config |
| 76ce1169 | 09-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
moved adLDAP to authad plugin and fixed includes |
| a731ed1d | 08-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
added PCRE UTF-8 checks to do=check FS#2636 |
| 63d9b820 | 06-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
avoid multiple paralell update checks
we now touch the messages before the actual update happens. this should lower the chance of more than one update check running at a time. |
| bfd975d2 | 06-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
fix regression bug in HTTPClient FS#2621
In the recent refactoring of the HTTPClient, a problem with certain systems was reintroduced. On these systems a select() call always waits for a timeout on
fix regression bug in HTTPClient FS#2621
In the recent refactoring of the HTTPClient, a problem with certain systems was reintroduced. On these systems a select() call always waits for a timeout on the first call before working properly on the second call.
This patch reintroduces the shorter timeouts with usleep rate limiting again.
Since this bug is not reproducible on other systems it can't be unit tested unfortunately.
show more ...
|
| 35349ab0 | 06-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
added simple compatibility wrapper for old TarLib |
| fb55b51e | 05-Nov-2012 |
Dominik Eckelmann <eckelmann@cosmocode.de> |
changed PAGEUTILS_ID_HIDEPAGE to has BEFORE/AFTER |
| 90a1db70 | 04-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
Tar: support for creating archives with long filenames
The library now creates either a POSIX ustar prefix or a GNU longlink entry for files which have a name longer than 100 bytes |
| 421a2704 | 04-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
Tar: Added extraction support for long file names
Supports POSIX ustar prefixes and GNU longlink entries |
| fba11f64 | 03-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
removed old TarLib and changed plugin manager to use new one |
| bee9f377 | 03-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
Completely rewritten Tar library
This new class is only losely based on our previous library. The whole API was changed to make it more flexible and memory saving.
Some fisrt unit tests are included |
| 2005b6b6 | 03-Nov-2012 |
Andreas Gohr <andi@splitbrain.org> |
TarLib code cleanup |