| 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 ...
|
| 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 ...
|
| 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 ...
|