| #
db926724 |
| 26-Jan-2024 |
Andreas Gohr <andi@splitbrain.org> |
Replace strftime with Intl ICU. Fixes #3573
This uses a class that maps strftime placeholders to the appropriate ICU patterns. I am using the fallback-intl branch here which provides an English-only
Replace strftime with Intl ICU. Fixes #3573
This uses a class that maps strftime placeholders to the appropriate ICU patterns. I am using the fallback-intl branch here which provides an English-only fallback when the intl extension is not available.
Core has only two places where strftime is used: dformat() and the SimplePie feed parser. Both are adjusted with this patch. For the latter a custom Item class had to be registered. For better separation all our FeedParser classes have been moved to the Feed namespace where our FeedCreator classes already reside.
Note that this will currently be a degration for users without intl as it will fall back to date and not to the still available strftime.
show more ...
|
| #
d3233986 |
| 12-May-2022 |
Andreas Gohr <andi@splitbrain.org> |
upgraded UniversalFeedCreator to v1.8.4.1
fixes #3651
|
| #
5484014b |
| 07-Jan-2021 |
Martijn Ras <Martijn.Ras@GMail.com> |
Fix for Remove random_compat, no longer needed #3262
|
| #
e43cd7e1 |
| 21-Oct-2019 |
Andreas Gohr <andi@splitbrain.org> |
Update composer dependencies
The following dependencies have been updated:
splitbrain/php-archive (1.0.10 => 1.1.1) phpseclib/phpseclib (2.0.11 => 2.0.23) paragonie/random_compat (v2.0.12 => v2.0.1
Update composer dependencies
The following dependencies have been updated:
splitbrain/php-archive (1.0.10 => 1.1.1) phpseclib/phpseclib (2.0.11 => 2.0.23) paragonie/random_compat (v2.0.12 => v2.0.18) simplepie/simplepie (1.5.1 => 1.5.3) geshi/geshi (v1.0.9.0 => v1.0.9.1) openpsa/universalfeedcreator (v1.8.3 => v1.8.3.2): marcusschwarz/lesserphp splitbrain/php-cli (1.1.2 => 1.1.5)
show more ...
|
| #
a628a7c6 |
| 27-Apr-2018 |
Andreas Gohr <andi@splitbrain.org> |
phpseclib update
|
| #
43d3f077 |
| 13-Apr-2018 |
Andreas Gohr <andi@splitbrain.org> |
updated composer dependencies
|
| #
dd7064d9 |
| 15-Aug-2017 |
Andreas Gohr <andi@splitbrain.org> |
updated composer dependencies
|
| #
e0dd796d |
| 31-Mar-2017 |
Andreas Gohr <andi@splitbrain.org> |
updated random_compat library
|
| #
114248c7 |
| 30-Nov-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Merge branch 'master' into phpseclib
* master: (54 commits) updated geshi authpdo - use type safe comparison on passwords. fixes #1765 removed unneeded files from random_compat Use cryptogra
Merge branch 'master' into phpseclib
* master: (54 commits) updated geshi authpdo - use type safe comparison on passwords. fixes #1765 removed unneeded files from random_compat Use cryptographically secure pseudo random number generator (CSPRNG) translation update translation update translation update translation update translation update or maybe I only now figured out the right travis config :-/ disable 7.1 testing completely allow 7.1 failures until it's released #1682 DE translation for key 'protected' Use 'Benachrichtigung' instead of 'Notifikation' Fix spelling of some terms (lower to upper case) DE translation for key: addUser_error_missing_pass DE translation for keys: update_name, update_mail translation update translation update Implemented interwiki substitution for external images (issue #1614). ...
show more ...
|
| #
7a33d2f8 |
| 20-Nov-2016 |
Niklas Keller <me@kelunik.com> |
Use cryptographically secure pseudo random number generator (CSPRNG)
Uses paragonie/random_compat instead of insecure home-brewed code.
It's NEVER fine to fall back to mt_rand() for secure random.
Use cryptographically secure pseudo random number generator (CSPRNG)
Uses paragonie/random_compat instead of insecure home-brewed code.
It's NEVER fine to fall back to mt_rand() for secure random.
Fixes #1760.
show more ...
|
| #
59419fd0 |
| 06-Sep-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Use composer installed phpseclib
We used to ship only parts of phpseclib in inc/phpseclib which made it a little tricky to update. This replaces the library with a composer installed version, making
Use composer installed phpseclib
We used to ship only parts of phpseclib in inc/phpseclib which made it a little tricky to update. This replaces the library with a composer installed version, making the rest of the library available to plugin authors. It might fix a problem with PHP 7.1 as reported in #1682 (unconfirmed)
show more ...
|