| c7ed57e2 | 22-May-2012 |
Roman Franchuk <franchukrom@gmail.com> |
Ukrainian language update |
| c07c5d93 | 21-May-2012 |
Robert Nitsch <r.s.nitsch@gmail.com> |
Fixes messages.txt's modification timestamp not being updated.
This bug occurs on systems where writing a zero-length string to an empty file does not update the file's modification timestamp.
This
Fixes messages.txt's modification timestamp not being updated.
This bug occurs on systems where writing a zero-length string to an empty file does not update the file's modification timestamp.
This leads to the messages.txt being downloaded almost endlessly, causing long delays for logged-in users. Visitors are not affected, because the messages.txt is only updated for logged-in users.
show more ...
|
| 5a9866e9 | 20-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
do not surpress any errors when loading plugin files
When a plugin file exists, we can assume it is the correct file and load it without error supression. This makes it much easier to detect and deb
do not surpress any errors when loading plugin files
When a plugin file exists, we can assume it is the correct file and load it without error supression. This makes it much easier to detect and debug problematic plugins.
show more ...
|
| ba6e9e9b | 16-May-2012 |
Andreas Gohr <gohr@cosmocode.de> |
make sure SSO data for AD backend is always UTF-8
In some circumstances the username was set in latin1. |
| 16f15a81 | 14-May-2012 |
Dominik Eckelmann <deckelmann@gmail.com> |
empty ID in wl() will be treated as $conf['start'] |
| 84148531 | 11-May-2012 |
Michael Hamann <michael@content-space.de> |
tpl_get_action: Return empty params array instead of params string
This prevents an "Illegal string offset" error in PHP 5.4 in the test cases (the integration tests failed here with PHP 5.4). |
| df08777d | 11-May-2012 |
Michael Hamann <michael@content-space.de> |
Adapt tests for PHP 5.4
Call-time pass-by-reference is a fatal syntax error in PHP 5.4 and stdClass objects can't be instantiated automatically anymore. |
| 8cb3706d | 11-May-2012 |
Michael Hamann <michael@content-space.de> |
Fix nested triggering of the same event
Previously when in an event handler the same event was triggered again, only the handlers for the second event invocation were all executed, the handling of t
Fix nested triggering of the same event
Previously when in an event handler the same event was triggered again, only the handlers for the second event invocation were all executed, the handling of the "outer" event stopped after the handling of the inner event as they both used the same iterator of the hooks array. This caused caching bugs e.g. when both the include and the indexmenu plugin were enabled as both of them load metadata in the cache handler which triggers another renderer cache event.
show more ...
|
| 2daedc0b | 10-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
GeSHi updated to 1.0.8.10 |
| d6b9c7bf | 08-May-2012 |
lupo49 <post@lupo49.de> |
Restore page versions - add timestamp of the restored version to to the summary field. This allows easier identifying of which version has been restored. (FS#2522) |
| f6e16614 | 07-May-2012 |
Anika Henke <anika@selfthinker.org> |
changed old link icons to use icons from same icon set as sitetools |
| f34e94dd | 07-May-2012 |
Anika Henke <anika@selfthinker.org> |
added icons for user and site tools (FS#2450) |
| ae992f53 | 07-May-2012 |
Tim Roes <mail@timroes.de> |
Changed padding and margin like @selfthinker suggested |
| 15bc9cbc | 07-May-2012 |
Tim Roes <mail@timroes.de> |
Removed vendor specific border radius |
| f774b92a | 04-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
let installer check for functions needed in HTTPClient FS#2505 |
| ca53ac98 | 04-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
Correctly handle multiline strings in JS compressor
See http://stackoverflow.com/questions/805107/how-to-create-multiline-strings for info on them. |
| 55ce1101 | 02-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
fixed a JSON bug with handling backspaces
This was fixed in upstream and the upstream tests caught this :-) |
| 040571db | 02-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
also skip native JSON encoding when skipnative is true |
| 68fd957c | 02-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
fixed JSON test cases
seems like phpunit will not run all test classes inside a file when giving it as an argument :-/
I removed the error supression tests as these test a feature we do not have in
fixed JSON test cases
seems like phpunit will not run all test classes inside a file when giving it as an argument :-/
I removed the error supression tests as these test a feature we do not have in our JSON class version (and shouldn't implement to keep as compatible as possible to the native JSON functions)
show more ...
|
| 132fb7d3 | 02-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
added some blowfish tests
upstream plus a test for our modifications |
| f9f987b2 | 02-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
added the orginal unit tests for JSON.php |
| e0f1fe02 | 02-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
removed duplicated documentation header in JSON.php |
| 050f8f4d | 01-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
removed unecessary requiresin unit tests |
| 1831d8a0 | 01-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
fixed password hashing tests for recent PMD5 change |
| 22f44d03 | 01-May-2012 |
Andreas Gohr <andi@splitbrain.org> |
avoid integer overflow in PassHash::pmd5 method
Input iteration counts are squared in the function and passing something above 30 is giving integer overflows on 32 bit systems (and causes insane ite
avoid integer overflow in PassHash::pmd5 method
Input iteration counts are squared in the function and passing something above 30 is giving integer overflows on 32 bit systems (and causes insane iteration counts on 64bit systems).
show more ...
|