| b9f5205a | 04-Feb-2023 |
Damien Regad <dregad@mantisbt.org> |
Restore fallback when calling git via shell fails |
| b6f8a5c6 | 03-Feb-2023 |
Damien Regad <dregad@mantisbt.org> |
getVersion() now prints Git commit hash
If DokuWiki is running from Git, on Admin page Version will be shown as `Git YYYY-MM-DD (<COMMIT>)`.
COMMIT is the abbreviated hash if shell_exec() can be us
getVersion() now prints Git commit hash
If DokuWiki is running from Git, on Admin page Version will be shown as `Git YYYY-MM-DD (<COMMIT>)`.
COMMIT is the abbreviated hash if shell_exec() can be used to retrieve information from git log, or the full hash otherwise.
Fixes #3877
show more ...
|
| 09bf5d22 | 03-Feb-2023 |
Damien Regad <dregad@mantisbt.org> |
Retrieve head commit from packed-refs file
Fixes #3877 |
| 1b7da646 | 03-Feb-2023 |
Damien Regad <dregad@mantisbt.org> |
Ensure shell_exec() is available before calling it
Fixes #3876 |
| 010cc795 | 03-Feb-2023 |
Simone Perin <simoneperin.92@libero.it> |
translation update |
| 90eb1b7b | 02-Feb-2023 |
Eduardo Mozart de Oliveira <2974895+eduardomozart@users.noreply.github.com> |
Update template.php |
| 8f5f1b87 | 02-Feb-2023 |
Andreas Gohr <andi@splitbrain.org> |
Revert "reset Event System in TestRequest"
This reverts commit d09a8e055b2b1ddb55da17403441e873517de553.
We have test that manipulate the event handler (eg. registering their own events on that han
Revert "reset Event System in TestRequest"
This reverts commit d09a8e055b2b1ddb55da17403441e873517de553.
We have test that manipulate the event handler (eg. registering their own events on that handler) which broke with above commit.
A better way needs to be found.
show more ...
|
| c7875401 | 02-Feb-2023 |
Jyoti S <16028156+AmritasyaPutra@users.noreply.github.com> |
Fix for PHP 8.1 Warning
I am running Dokuwiki Release 2022-07-31a "Igor" and I noticed the following variety of PHP logs generated:
[01-Feb-2023 07:21:37 Asia/Kolkata] PHP Warning: Undefined array
Fix for PHP 8.1 Warning
I am running Dokuwiki Release 2022-07-31a "Igor" and I noticed the following variety of PHP logs generated:
[01-Feb-2023 07:21:37 Asia/Kolkata] PHP Warning: Undefined array key "host" in /home/ekvastra/wiki.ekvastra.in/inc/common.php on line 1362
show more ...
|
| d09a8e05 | 01-Feb-2023 |
Andreas Gohr <andi@splitbrain.org> |
reset Event System in TestRequest
To better simulate requests, event registration should be redone on each simulated request. |
| 428df306 | 01-Feb-2023 |
fiwswe <53953985+fiwswe@users.noreply.github.com> |
Avoid indexing into log line
Should fix #3868
A log file should be treated as untrusted input. Thus we can make no assumptions about its content. Assuming a line has at least 2 characters length
Avoid indexing into log line
Should fix #3868
A log file should be treated as untrusted input. Thus we can make no assumptions about its content. Assuming a line has at least 2 characters length is an assumption we can avoid by using `substr($line, 0, 2) === ' '` instead of `$line[0] === ' ' && $line[1] === ' '`. No need to separately check for empty or `null` either.
show more ...
|
| 7e785b0c | 31-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
update to lesserphp 0.6 |
| c7acaa16 | 31-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
try utf8_decode last
utf8_decode has been deprecated with PHP 8.2 so we now only use it when no other mechanisms (mbstring and intl) are available |
| 9aee9730 | 31-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
Adjustments for new SimplePie version |
| 2afbbbae | 31-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
updated composer dependencies |
| a46a37ef | 31-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
avoid warning in formText when no text is given |
| d9a7912a | 31-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
use httpbingo for HTPP tests
This service is based on httpbin-go which seems to be better maintained and should be easy to set up for ourselves if needed.
This also fixes a warning when the client
use httpbingo for HTPP tests
This service is based on httpbin-go which seems to be better maintained and should be easy to set up for ourselves if needed.
This also fixes a warning when the client is reused with the max_bodysize mechanism
show more ...
|
| ec88e837 | 31-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
fix deprecated ${var} usage |
| b9b8bba7 | 31-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
add webp to default mime types. #3816 |
| 336fb258 | 31-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
use newer checkout action and test on php 8.2 |
| e2905cd4 | 26-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
fix accidental overwriting of variable in bulkmailer #3862
When the bulkmailer tries to skip own or minor edits, it was overwriting $rev with a timestamp instead of using the proper array structure
fix accidental overwriting of variable in bulkmailer #3862
When the bulkmailer tries to skip own or minor edits, it was overwriting $rev with a timestamp instead of using the proper array structure returned by getRevisionInfo().
This also moves the initialization of the PageChangeLog object out of the while loop to ensure it's inner caching mechanism is utilized when fetching the info.
This should fix #3862
show more ...
|
| 8fa268b3 | 26-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
fix isset checks in Mailer class
$INFO might be set, but may not contain any user info |
| a8a3c3d9 | 26-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
update ParserCache dependency to reflect new file location |
| 760e8655 | 25-Jan-2023 |
Mike Steele <michael@michaelsteele.us> |
use POSIX standard 'dot' built-in rather than 'source' |
| c4055b85 | 25-Jan-2023 |
Andreas Gohr <andi@splitbrain.org> |
do not try to resolve prefixes of an empty ID
a problem reported in https://forum.dokuwiki.org/d/20776-breadcrumbs-youarehere-uninitialized-string-offset-0 |
| 294f978a | 24-Jan-2023 |
tangdou1 <35254744+tangdou1@users.noreply.github.com> |
Update some chinese to make them deambiguation |