| 0cb706af | 13-Oct-2017 |
Дмитрий Лебедев <dmitriy.lebedev@bars-open.ru> |
Let `utf8_substr` use `utf8_strlen` instead of `strlen(utf8_decode($value))` |
| e4ae21e9 | 06-Oct-2017 |
Jon Theil Nielsen <jontheil@gmail.com> |
translation update |
| 63da9d57 | 04-Oct-2017 |
F. Mueller-Donath <j.felix@mueller-donath.de> |
translation update |
| bce0dd6a | 02-Oct-2017 |
Дмитрий Лебедев <dmitriy.lebedev@bars-open.ru> |
Make `utf8_strlen` use multiple fallback options |
| f7813a68 | 20-Sep-2017 |
Niklas Keller <me@kelunik.com> |
Remove insecure SSLv3 fallback, use TLS 1.2 if possible
STREAM_CRYPTO_METHOD_TLS_CLIENT is only TLS 1.0 except for PHP 5.6.0-5.6.6 and 7.2.0+. |
| 55ba1452 | 24-Sep-2017 |
Schplurtz le Déboulonné <Schplurtz@laposte.net> |
translation update |
| 164faf82 | 20-Sep-2017 |
Szymon Olewniczak <solewniczak@rid.pl> |
fix file name closes #2129 |
| 7ed31746 | 20-Sep-2017 |
Szymon Olewniczak <solewniczak@rid.pl> |
proper handling of "0" as a search query in media manager + test case for this |
| 23e31e76 | 20-Sep-2017 |
Szymon Olewniczak <solewniczak@rid.pl> |
implement globbing media search |
| afd1160b | 20-Sep-2017 |
Szymon Olewniczak <solewniczak@rid.pl> |
create some unit tests that test searching in media manager |
| 76472096 | 20-Sep-2017 |
Szymon Olewniczak <solewniczak@rid.pl> |
add globbing to media search |
| ff45434b | 20-Sep-2017 |
Niklas Keller <me@kelunik.com> |
Use constant type comparison for hashes, fixes #2132 |
| a732ce8b | 16-Sep-2017 |
Марко М. Костић <marko.m.kostic@gmail.com> |
translation update |
| 3d854251 | 14-Sep-2017 |
Domingo Redal <docxml@gmail.com> |
translation update |
| 2d3b082e | 11-Sep-2017 |
Michael Große <grosse@cosmocode.de> |
test: add tests for the section edit regex |
| fb90e132 | 10-Sep-2017 |
Roman <vsmemorial@gmail.com> |
translation update |
| 2a85c691 | 07-Sep-2017 |
Andreas Gohr <gohr@cosmocode.de> |
abbreviated ternary operator |
| c7d61a4e | 07-Sep-2017 |
Andreas Gohr <gohr@cosmocode.de> |
pass action name by reference. fixes #2117
This fixes plugins that expect that they can change the global $ACT instead of $event->data in the ACTION_ACT_PREPROCESS event.
This make the whole route
pass action name by reference. fixes #2117
This fixes plugins that expect that they can change the global $ACT instead of $event->data in the ACTION_ACT_PREPROCESS event.
This make the whole route a little bit uncleaner but would increase backwards compatibility.
I'm not sure how widespread the problem is and if adding this is a good idea.
show more ...
|
| 68667f4a | 06-Sep-2017 |
Michael Große <grosse@cosmocode.de> |
fix(ActionRouter): trigger ACTION_ACT_PREPROCESS for all actions
This should recreate the behaviour prior to #1933, where the event was triggered for all ACT values. Some plugins, like edittable, de
fix(ActionRouter): trigger ACTION_ACT_PREPROCESS for all actions
This should recreate the behaviour prior to #1933, where the event was triggered for all ACT values. Some plugins, like edittable, depend on the functionality.
show more ...
|
| 06917fce | 05-Sep-2017 |
Michael Große <grosse@cosmocode.de> |
fix: fix regex to return table secedit buttons
Since the hid is optional, it must also be optional in the regex. Also this commit introduced named capture groups to make it more obvious which part o
fix: fix regex to return table secedit buttons
Since the hid is optional, it must also be optional in the regex. Also this commit introduced named capture groups to make it more obvious which part of the regex captures what.
Also there is now an explicit hid generated for tables, to enable jumping to the correct section after finishing editing.
This was broken in 2571786c763e04c7abbf27c2245a5720878dc3f1 or #1966 respectively.
Known Issues: * since both title and hid are optional, a hid may be misinterpreted as a title if the title is not generated.
show more ...
|
| 5f28f727 | 02-Sep-2017 |
Andreas Gohr <andi@splitbrain.org> |
make top button a button. fixes #2045 |
| b965a044 | 02-Sep-2017 |
Andreas Gohr <andi@splitbrain.org> |
added convenience method to display item as button |
| 50ca245c | 02-Sep-2017 |
Andreas Gohr <andi@splitbrain.org> |
MenuItems: add possibility to set a different title attribute |
| 3862da0e | 02-Sep-2017 |
Andreas Gohr <andi@splitbrain.org> |
throw exception in nice_die during tests
Exits during testing will break the whole test suite. It makes more sense to throw an exception in that case. The exception's stack trace will help to debug
throw exception in nice_die during tests
Exits during testing will break the whole test suite. It makes more sense to throw an exception in that case. The exception's stack trace will help to debug the actual problem
show more ...
|
| 27c0c399 | 02-Sep-2017 |
Andreas Gohr <andi@splitbrain.org> |
reworked notifications to the test system
No globals required anymore, somewhat more general approach to sending data to the test system. Clean access through keys. |