| 1b0e85da | 17-Aug-2018 |
Michael Braun <michael-dev@fami-braun.de> |
Fix Locked-Page not showing page content
While refactoring into inc/Action/Locked, the fall-through call to html_edit was missed. See 952acff90985f4576de0558a58a167372392e21c
This removed the edit
Fix Locked-Page not showing page content
While refactoring into inc/Action/Locked, the fall-through call to html_edit was missed. See 952acff90985f4576de0558a58a167372392e21c
This removed the edit box from the locked page, which is needed for users to get the page source or by etherpad lite plugin.
This change re-adds the call to html_edit for the locked action.
Signed-off-by: Michael Braun <michael-dev@fami-braun.de>
show more ...
|
| fe41ef51 | 16-Aug-2018 |
WIRESLINKEA <wireslinkea@gmail.com> |
translation update |
| 60de77bc | 11-Aug-2018 |
lempel <riverlempel@hotmail.com> |
translation update |
| 045f64ab | 04-Aug-2018 |
Khalid <khalid.aljahil@gmail.com> |
translation update |
| b1efb9eb | 01-Aug-2018 |
Aleksandr Selivanov <alexgearbox@yandex.ru> |
translation update |
| d443762b | 27-Jul-2018 |
Andreas Gohr <andi@splitbrain.org> |
deprecated JSON class
JSON is natively supported since years. This makes 2145bd4c56435f829a19aad843172f8ddffbc69b obsolete again. |
| 2145bd4c | 27-Jul-2018 |
Andreas Gohr <andi@splitbrain.org> |
upgraded JSON class to latest (2006) version
from http://mike.teczno.com/JSON/JSON.phps
This fixes a problem on PHP 7.2. However ultimately this class should be dropped in favor of the native json_
upgraded JSON class to latest (2006) version
from http://mike.teczno.com/JSON/JSON.phps
This fixes a problem on PHP 7.2. However ultimately this class should be dropped in favor of the native json_decode/json_encode functions.
show more ...
|
| 296be24e | 27-Jul-2018 |
Andreas Gohr <andi@splitbrain.org> |
continue is break in switch
This should fix a warning in PHP 7.3 |
| 65a878f9 | 26-Jul-2018 |
mahir <mahirtakak@gmail.com> |
translation update |
| be2e462d | 05-Jul-2018 |
Michael Große <grosse@cosmocode.de> |
✏️ Fix typo in variable name |
| f519f9db | 05-Jul-2018 |
Michael Große <grosse@cosmocode.de> |
Add fallback if we cannot use git on the shell
Under some circumstances, there may be no git or no shell access available. This gets the commit date manually. |
| 067b4fb9 | 05-Jul-2018 |
Michael Große <grosse@cosmocode.de> |
make getVersion show the commit date, not checkout date
Currently, getVersion() shows the date when the HEAD of the local git repository was last changed, not the date of the current commit. This
make getVersion show the commit date, not checkout date
Currently, getVersion() shows the date when the HEAD of the local git repository was last changed, not the date of the current commit. This commit fixes that behavior.
show more ...
|
| f8b8d045 | 02-Jul-2018 |
Peter 'Pessoft' Kolínek <github@pessoft.com> |
Fix missing ui-bg_glass_95_fef1ec_1x400.png and be/jquery.ui.datepicker.js for jquery |
| 21c01779 | 17-Jun-2018 |
Alexander Achenbach <xela@slit.de> |
Fix .htaccess files for Apache 2.4 (and 2.2)
Refer to module by suitable file name (mod_*.c). Test for mod_authz_core.c (instead of mod_authz_host.c) to properly detect Apache 2.4 and avoid false po
Fix .htaccess files for Apache 2.4 (and 2.2)
Refer to module by suitable file name (mod_*.c). Test for mod_authz_core.c (instead of mod_authz_host.c) to properly detect Apache 2.4 and avoid false positive for Apache 2.2.
show more ...
|
| b78f68bc | 15-Jun-2018 |
Andreas Gohr <andi@splitbrain.org> |
some small fixes for PSR2 |
| 0c3a5702 | 15-Jun-2018 |
Andreas Gohr <andi@splitbrain.org> |
split changelog classes into their own namespace
The remaining functions in inc/changelog.php should be moved into a utility class. |
| 432adb37 | 15-Jun-2018 |
Andreas Gohr <andi@splitbrain.org> |
split sitemapping into its own namespace |
| 520438b3 | 14-Jun-2018 |
Michael Große <grosse@cosmocode.de> |
(Draft) Fix exception when actually viewing a draft of a page
Not sure why this didn't show up sooner |
| 985d6187 | 12-Jun-2018 |
Elenchus <sijongyeoil@gmail.com> |
add logic if the server uses unlimited memory settings in is_mem_available()
If memory is set to unlimited, then memory_limit will be -1, so set this to true in this case. |
| e432cc89 | 11-Jun-2018 |
Michael Große <grosse@cosmocode.de> |
(Draft): Add doc block for constructor |
| ebf17449 | 11-Jun-2018 |
Andreas Gohr <gohr@cosmocode.de> |
fix remote API call dokuwiki.deleteUsers
The parameters passed to triggerUserMod() were wrong. |
| f61b7422 | 08-Jun-2018 |
Christian McKenna <mckchr@banenor.no> |
translation update |
| b16fbc3f | 08-Jun-2018 |
Michael Große <grosse@cosmocode.de> |
Use json for the response to dw_locktimer |
| c49e647b | 06-Jun-2018 |
Michael Große <grosse@cosmocode.de> |
(editor) draft status is semantically not part of the toolbar
This change is useful for plugins that may want to implement their own toolbar (and thus hide the default toolbar), but still would l
(editor) draft status is semantically not part of the toolbar
This change is useful for plugins that may want to implement their own toolbar (and thus hide the default toolbar), but still would like to let the locktimer set the draft status.
show more ...
|
| 0aabe6f8 | 07-Jun-2018 |
Michael Große <grosse@cosmocode.de> |
Create new Draft class and move draft handling there |