| f6095b17 | 24-Aug-2018 |
Salif Mehmed <salif13mehmed@gmail.com> |
translation update |
| 9d8c6b63 | 20-Aug-2018 |
Peter 'Pessoft' Kolínek <github@pessoft.com> |
Remove inc/lang/.htaccess as inc is already protected
|
| 9ae1a5d1 | 17-Aug-2018 |
Andreas Gohr <andi@splitbrain.org> |
fix #2466. Avoid caching half fetched files
When a remote resource exceeds the fetchsize but the remote server does not return a Content-Length, we read only the fetchsize amount of bytes but failed
fix #2466. Avoid caching half fetched files
When a remote resource exceeds the fetchsize but the remote server does not return a Content-Length, we read only the fetchsize amount of bytes but failed to detect that this was a partial read, thus a partial resource got cached.
This fix will read fetchsize+1, which will then be correctly determined as too big and thrown away.
show more ...
|
| 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 |
| 3409ba76 | 21-Jul-2018 |
Andreas Gohr <andi@splitbrain.org> |
fixed popularity plugin
The callback needs to be public |
| e62a3a2d | 20-Jul-2018 |
Andreas Gohr <andi@splitbrain.org> |
reference existing proper progress gif. fixes #2441 |
| 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 |
| ca549e41 | 26-Jun-2018 |
Andreas Gohr <gohr@cosmocode.de> |
removed accidental merges of outdated translations
|
| 91a976ff | 21-Jun-2018 |
Christopher Smith <chris@jalakai.co.uk> |
Revert previous commit (made in error)
This reverts commit 4da13513aa3cd524af47ebe8f387ea892240a3b2.
|
| 4da13513 | 21-Jun-2018 |
Christopher Smith <chris@jalakai.co.uk> |
change marquee headline to building for the future |
| 018871f4 | 19-Jun-2018 |
Brend Wanders <brend@13w.nl> |
Change `const` use to `var` for Safari 9 (on iOS)
Safari 9 in iOS does not support the use of `const` in strict mode. Unfortunately, some of us are stuck with Safari 9 due to not being able to upgra
Change `const` use to `var` for Safari 9 (on iOS)
Safari 9 in iOS does not support the use of `const` in strict mode. Unfortunately, some of us are stuck with Safari 9 due to not being able to upgrade.
I am a big fan of progressive enhancement, but because all javascript code is packed together and sent off to the client, this small incompatibility breaks all javascript for safari 9 browsers. Switching these two keywords makes everything work again.
There are no other uses of `const` in the codebase as far as I can find. This change has little to no impact on anything else, but slighlty extends the range of supported browsers.
show more ...
|
| 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. |