GitHub/WoltLab/WCF.git
2 years agoReject `fileSystemPath`s matching an active app during import
Tim Düsterhus [Thu, 30 Sep 2021 11:46:48 +0000 (13:46 +0200)]
Reject `fileSystemPath`s matching an active app during import

Resolves #4517

2 years agoDeprecate `$_REQUEST['styleID']`
joshuaruesweg [Wed, 29 Sep 2021 13:08:14 +0000 (15:08 +0200)]
Deprecate `$_REQUEST['styleID']`

The implementation of the styleID request parameter is very messy, allows for XSRF attacks due to missing validation, might collide with controllers using styleID parameters for their own purpose and can easily be replaced by a plugin if necessary (e.g. for demo setups).

2 years agoMerge pull request #4529 from WoltLab/5.5-save-style-id
Joshua Rüsweg [Wed, 29 Sep 2021 13:00:47 +0000 (15:00 +0200)]
Merge pull request #4529 from WoltLab/5.5-save-style-id

Prevent saving `styleID` in sessions for user

2 years agoPrevent saving `styleID` in sessions for user
joshuaruesweg [Wed, 29 Sep 2021 12:09:00 +0000 (14:09 +0200)]
Prevent saving `styleID` in sessions for user

2 years agoMerge branch '5.4'
Tim Düsterhus [Wed, 29 Sep 2021 08:56:16 +0000 (10:56 +0200)]
Merge branch '5.4'

2 years agoMerge pull request #4532 from WoltLab/unfurl-body-read-failure
Joshua Rüsweg [Wed, 29 Sep 2021 08:46:35 +0000 (10:46 +0200)]
Merge pull request #4532 from WoltLab/unfurl-body-read-failure

Correctly wrap \RuntimeException from body reading in DownloadFailed in UnfurlResponse

2 years agoMerge branch 'master' of https://github.com/WoltLab/WCF
Marcel Werk [Tue, 28 Sep 2021 16:11:41 +0000 (18:11 +0200)]
Merge branch 'master' of https://github.com/WoltLab/WCF

2 years agoRemoved obsolete language variable
Marcel Werk [Tue, 28 Sep 2021 16:11:39 +0000 (18:11 +0200)]
Removed obsolete language variable

2 years agoCorrectly wrap \RuntimeException from body reading in DownloadFailed in UnfurlResponse
Tim Düsterhus [Tue, 28 Sep 2021 15:10:05 +0000 (17:10 +0200)]
Correctly wrap \RuntimeException from body reading in DownloadFailed in UnfurlResponse

2 years agoMerge branch '5.4'
Tim Düsterhus [Tue, 28 Sep 2021 14:01:33 +0000 (16:01 +0200)]
Merge branch '5.4'

2 years agoMerge branch '5.3' into 5.4
Tim Düsterhus [Tue, 28 Sep 2021 14:01:19 +0000 (16:01 +0200)]
Merge branch '5.3' into 5.4

2 years agoMerge pull request #4531 from WoltLab/http-request-timeout
Tim Düsterhus [Tue, 28 Sep 2021 13:58:46 +0000 (15:58 +0200)]
Merge pull request #4531 from WoltLab/http-request-timeout

Configure emergency timeout in HTTPRequest

2 years agoMerge branch '5.4'
Tim Düsterhus [Tue, 28 Sep 2021 13:21:44 +0000 (15:21 +0200)]
Merge branch '5.4'

2 years agoMerge remote-tracking branch 'origin/5.4' into 5.4
Tim Düsterhus [Tue, 28 Sep 2021 13:21:30 +0000 (15:21 +0200)]
Merge remote-tracking branch 'origin/5.4' into 5.4

2 years agoMerge branch '5.4'
Tim Düsterhus [Tue, 28 Sep 2021 13:20:56 +0000 (15:20 +0200)]
Merge branch '5.4'

2 years agoAdd explicit check whether the port is numeric in Redis wrapper
Tim Düsterhus [Tue, 28 Sep 2021 13:18:52 +0000 (15:18 +0200)]
Add explicit check whether the port is numeric in Redis wrapper

This improves error messages.

2 years agoMerge branch '5.3' into 5.4
Tim Düsterhus [Tue, 28 Sep 2021 13:17:30 +0000 (15:17 +0200)]
Merge branch '5.3' into 5.4

2 years agoCast the Redis port to int
Tim Düsterhus [Tue, 28 Sep 2021 13:13:42 +0000 (15:13 +0200)]
Cast the Redis port to int

The `Redis::connect()` method expects the `$port` parameter to be an integer.
PHP will automatically cast numeric strings to an integer, but error out with
an TypeError if the string is not a well-formed number. This TypeError will not
be caught in an `catch(\Exception $e)` block, because TypeError does not
inherit Exception.

Perform an explicit cast to ensure the fallback to DiskCacheSource works.

2 years agoConfigure emergency timeout in HTTPRequest
Tim Düsterhus [Tue, 28 Sep 2021 12:31:33 +0000 (14:31 +0200)]
Configure emergency timeout in HTTPRequest

The connect and read timeouts might not reliably trigger in all cases.
Configure a large overall timeout to ensure PHP workers will terminate
eventually.

see 2dbd5654cb9faff45bb51df9a2f3834bd320cc00

2 years agoIncorrect detection of HTML tags
Alexander Ebert [Mon, 27 Sep 2021 15:00:48 +0000 (17:00 +0200)]
Incorrect detection of HTML tags

The previous regex was incorrect and caused false-positive matches. One such case was a `<td>The …</td>` which translated into `###td ###The …`, causing it to be recognized as a `<th>`.

The new regex is much more restrictive by requiring at least one whitespace after the tag name if there is additional content.

2 years agoMerge pull request #4518 from WoltLab/notifications-for-subscribers-of-parent-objects
Marcel Werk [Mon, 27 Sep 2021 13:37:38 +0000 (15:37 +0200)]
Merge pull request #4518 from WoltLab/notifications-for-subscribers-of-parent-objects

Notifications for subscribers of parent objects

2 years agoUpdate fileDelete.xml
Tim Düsterhus [Mon, 27 Sep 2021 13:11:01 +0000 (15:11 +0200)]
Update fileDelete.xml

This adds files where git detected a rename and thus did not report a deletion.

2 years agoMerge branch '5.4'
joshuaruesweg [Mon, 27 Sep 2021 11:57:04 +0000 (13:57 +0200)]
Merge branch '5.4'

2 years agoFix removing reactions on guests content
joshuaruesweg [Mon, 27 Sep 2021 11:16:31 +0000 (13:16 +0200)]
Fix removing reactions on guests content

Since MySQL 8 the deletion of reactions on contents created by guests might fail. The ReactionHandler tries to update the likesReceived column for a non-existent user, sending the empty string as the userID. Recent versions of MySQL 8 error out with MySQL error 1292. The following MySQL bug appears to be related:

https://bugs.mysql.com/bug.php?id=101806

2 years agoMerge remote-tracking branch 'origin/master'
Tim Düsterhus [Mon, 27 Sep 2021 10:34:48 +0000 (12:34 +0200)]
Merge remote-tracking branch 'origin/master'

2 years agoMerge branch '5.4'
Tim Düsterhus [Mon, 27 Sep 2021 10:34:34 +0000 (12:34 +0200)]
Merge branch '5.4'

2 years agoMerge pull request #4528 from WoltLab/json-error-max-length
Tim Düsterhus [Mon, 27 Sep 2021 09:52:06 +0000 (11:52 +0200)]
Merge pull request #4528 from WoltLab/json-error-max-length

Truncate the maximum length of the input JSON in error message when failing to decode

2 years agoTruncate the maximum length of the input JSON in error message when failing to decode
Tim Düsterhus [Mon, 27 Sep 2021 09:44:24 +0000 (11:44 +0200)]
Truncate the maximum length of the input JSON in error message when failing to decode

Stop this from bloating the error log in case of huge responses.

2 years agoMerge pull request #4527 from WoltLab/search-index-manager-create-return
Tim Düsterhus [Mon, 27 Sep 2021 09:19:46 +0000 (11:19 +0200)]
Merge pull request #4527 from WoltLab/search-index-manager-create-return

Remove return value for AbstractSearchIndexManager::createSearchIndex()

2 years agoRemove return value for AbstractSearchIndexManager::createSearchIndex()
Tim Düsterhus [Mon, 27 Sep 2021 08:45:30 +0000 (10:45 +0200)]
Remove return value for AbstractSearchIndexManager::createSearchIndex()

Returning this boolean value does not appear to be useful at all, as there is
no reason why the state after this method finishes should be that the INDEX
does not actually exist (except in case of an Exception). Whether or not it
previously existed is irrelevant.

In fact this method is `protected` and the return value is not used at all,
thus it is safe to remove this requirement.

2 years agoMerge pull request #4514 from WoltLab/recommend-x64
Tim Düsterhus [Mon, 27 Sep 2021 08:42:26 +0000 (10:42 +0200)]
Merge pull request #4514 from WoltLab/recommend-x64

Recommend 64-bit PHP during WCFSetup

2 years agoMerge pull request #4526 from WoltLab/session-cookie-lifetime
Tim Düsterhus [Mon, 27 Sep 2021 08:32:14 +0000 (10:32 +0200)]
Merge pull request #4526 from WoltLab/session-cookie-lifetime

Decrease the session cookie lifetime leeway to 1 week

2 years agoSimplify the 64-bit check in WCFSetup
Tim Düsterhus [Mon, 27 Sep 2021 08:30:13 +0000 (10:30 +0200)]
Simplify the 64-bit check in WCFSetup

2 years agoDecrease the session cookie lifetime leeway to 1 week
Tim Düsterhus [Mon, 27 Sep 2021 08:03:13 +0000 (10:03 +0200)]
Decrease the session cookie lifetime leeway to 1 week

With the increase of the user session lifetime to 2 months, simply multiplying
by two results in an excessive cookie lifetime.

Decrease this to a constant leeway of 1 week. If the cookie in the browser
expires, the session on the server should be long gone, even for wildly
incorrect local clocks.

2 years agoMerge pull request #4525 from WoltLab/session-device-icon
Joshua Rüsweg [Mon, 27 Sep 2021 07:50:54 +0000 (09:50 +0200)]
Merge pull request #4525 from WoltLab/session-device-icon

Move Session::getDeviceIcon() into UserAgent::getDeviceIcon()

2 years agoMove Session::getDeviceIcon() into UserAgent::getDeviceIcon()
Tim Düsterhus [Fri, 24 Sep 2021 14:29:03 +0000 (16:29 +0200)]
Move Session::getDeviceIcon() into UserAgent::getDeviceIcon()

This method does not really belong into the Session class.

2 years agoTransmit XSRF-Token in body in User/Session/Delete.ts
Tim Düsterhus [Fri, 24 Sep 2021 14:03:12 +0000 (16:03 +0200)]
Transmit XSRF-Token in body in User/Session/Delete.ts

Sensitive information should not be transmitted within the URI.

2 years agoMerge pull request #4523 from WoltLab/xsrf-token-javascript
Tim Düsterhus [Fri, 24 Sep 2021 13:59:51 +0000 (15:59 +0200)]
Merge pull request #4523 from WoltLab/xsrf-token-javascript

Add TypeScript function to retrieve the XSRF-TOKEN

2 years agoMerge branch '5.4'
Tim Düsterhus [Fri, 24 Sep 2021 13:30:02 +0000 (15:30 +0200)]
Merge branch '5.4'

2 years agoValidate the XSRF-Token in DeleteSessionAction
Tim Düsterhus [Fri, 24 Sep 2021 13:27:48 +0000 (15:27 +0200)]
Validate the XSRF-Token in DeleteSessionAction

This is not necessarily required, because the `sessionID` already contains high
entropy. However the JavaScript code already provides the XSRF-Token, so let's
validate it for completeness.

2 years agoDo not import getXsrfToken() as a standalone function
Tim Düsterhus [Fri, 24 Sep 2021 13:07:15 +0000 (15:07 +0200)]
Do not import getXsrfToken() as a standalone function

2 years agoRemove use of SID_ARG_2ND constant in acpSessionLog
Tim Düsterhus [Fri, 24 Sep 2021 12:57:55 +0000 (14:57 +0200)]
Remove use of SID_ARG_2ND constant in acpSessionLog

This was effectively dead code, because `->hasProtectedURI()` always returns
`false` since ages, as the `?page=` and `?form=` parameters are gone.

2 years agoAdd TypeScript function to retrieve the XSRF-TOKEN
Tim Düsterhus [Fri, 24 Sep 2021 12:51:45 +0000 (14:51 +0200)]
Add TypeScript function to retrieve the XSRF-TOKEN

This is intended to ease future changes, e.g. by allowing the code to always
retrieve the latest token from the cookie, instead of relying on the
effectively immutable value set at page load. In the long run this will also
allow to reduce the number of globals on the `window` object.

On the PHP side the use of the `SECURITY_TOKEN` constants have already been
deprecated in 5.4.

see #3609
see 3f6a261b1e6a3804370eb1e2a046ea6c666dbedd

2 years agoMerge branch '5.4'
Tim Düsterhus [Fri, 24 Sep 2021 12:46:22 +0000 (14:46 +0200)]
Merge branch '5.4'

2 years agoRemove SECURITY_TOKEN* constants from constants.php
Tim Düsterhus [Fri, 24 Sep 2021 12:34:39 +0000 (14:34 +0200)]
Remove SECURITY_TOKEN* constants from constants.php

These were effectively deprecated in 3f6a261b1e6a3804370eb1e2a046ea6c666dbedd.

2 years agoRemove SID* constants from constants.php
Tim Düsterhus [Fri, 24 Sep 2021 12:33:48 +0000 (14:33 +0200)]
Remove SID* constants from constants.php

These were removed in 8a35fd6de81f1138456fb777eb57d4b3907c0c66.

2 years agoRemove INullableFormField from SourceCodeFormField
Tim Düsterhus [Fri, 24 Sep 2021 10:33:51 +0000 (12:33 +0200)]
Remove INullableFormField from SourceCodeFormField

This field is not actually nullable (it does not handle `isNullable()`), I
assume this to be a copy and paste error.

2 years agoRelease 5.4.8 5.4.8
Alexander Ebert [Fri, 24 Sep 2021 09:13:32 +0000 (11:13 +0200)]
Release 5.4.8

2 years agoMerge branch '5.4'
Tim Düsterhus [Fri, 24 Sep 2021 08:14:53 +0000 (10:14 +0200)]
Merge branch '5.4'

2 years agoRelease 5.4.8 dev 2 5.4.8_dev_2
Alexander Ebert [Fri, 24 Sep 2021 07:37:56 +0000 (09:37 +0200)]
Release 5.4.8 dev 2

2 years agoRemoved duplicated condition
Marcel Werk [Thu, 23 Sep 2021 13:55:18 +0000 (15:55 +0200)]
Removed duplicated condition

2 years agoNotifications for subscribers of parent objects
Marcel Werk [Thu, 23 Sep 2021 13:35:35 +0000 (15:35 +0200)]
Notifications for subscribers of parent objects

2 years agoRemove duplication of AJAX test in WCFACP::initAuth()
Tim Düsterhus [Thu, 23 Sep 2021 13:09:05 +0000 (15:09 +0200)]
Remove duplication of AJAX test in WCFACP::initAuth()

2 years agoMerge identical catch blocks in ImageProxyAction
Tim Düsterhus [Thu, 23 Sep 2021 12:36:00 +0000 (14:36 +0200)]
Merge identical catch blocks in ImageProxyAction

2 years agoRemoved obsolete code
Marcel Werk [Thu, 23 Sep 2021 12:21:29 +0000 (14:21 +0200)]
Removed obsolete code

2 years agoMerge remote-tracking branch 'origin/master'
Tim Düsterhus [Thu, 23 Sep 2021 12:05:22 +0000 (14:05 +0200)]
Merge remote-tracking branch 'origin/master'

2 years agoMerge branch '5.4'
Tim Düsterhus [Thu, 23 Sep 2021 12:05:02 +0000 (14:05 +0200)]
Merge branch '5.4'

2 years agoMerge pull request #4516 from WoltLab/xsrf-token-error
Tim Düsterhus [Thu, 23 Sep 2021 11:33:54 +0000 (13:33 +0200)]
Merge pull request #4516 from WoltLab/xsrf-token-error

Improve phrasing for XSRF token error messages

2 years agoMerge pull request #4515 from WoltLab/deprecate-abstract-secure-page
Tim Düsterhus [Thu, 23 Sep 2021 11:33:48 +0000 (13:33 +0200)]
Merge pull request #4515 from WoltLab/deprecate-abstract-secure-page

Deprecate AbstractSecurePage

2 years agoImprove phrasing in wcf.ajax.error.sessionExpired
Tim Düsterhus [Thu, 23 Sep 2021 10:47:15 +0000 (12:47 +0200)]
Improve phrasing in wcf.ajax.error.sessionExpired

see #4501

2 years agoImprove phrasing in wcf.global.form.error.securityToken
Tim Düsterhus [Thu, 23 Sep 2021 10:44:32 +0000 (12:44 +0200)]
Improve phrasing in wcf.global.form.error.securityToken

see #4501

2 years agoDeprecate AbstractSecurePage
Tim Düsterhus [Thu, 23 Sep 2021 10:38:05 +0000 (12:38 +0200)]
Deprecate AbstractSecurePage

2 years agoRecommend 64-bit PHP during WCFSetup
Tim Düsterhus [Thu, 23 Sep 2021 08:33:23 +0000 (10:33 +0200)]
Recommend 64-bit PHP during WCFSetup

Resolves #4512

2 years agoReplace use of `StringUtil::split()` by `\mb_str_split()`
Tim Düsterhus [Thu, 23 Sep 2021 07:24:18 +0000 (09:24 +0200)]
Replace use of `StringUtil::split()` by `\mb_str_split()`

2 years agoDeprecated `StringUtil::split()`
Tim Düsterhus [Thu, 23 Sep 2021 07:23:48 +0000 (09:23 +0200)]
Deprecated `StringUtil::split()`

Resolves #4513

2 years agoRelease 5.4.8 dev 1 5.4.8_dev_1
Alexander Ebert [Wed, 22 Sep 2021 16:35:39 +0000 (18:35 +0200)]
Release 5.4.8 dev 1

2 years agoUpdating minified JavaScript files
WoltLab [Wed, 22 Sep 2021 16:11:07 +0000 (16:11 +0000)]
Updating minified JavaScript files

2 years agoUpdate pelago/emogrifier to 6.0
Tim Düsterhus [Wed, 22 Sep 2021 14:08:49 +0000 (16:08 +0200)]
Update pelago/emogrifier to 6.0

2 years agoMerge branch '5.4'
Tim Düsterhus [Wed, 22 Sep 2021 13:45:17 +0000 (15:45 +0200)]
Merge branch '5.4'

2 years agoMerge pull request #4510 from WoltLab/wcfsetup-https
Tim Düsterhus [Wed, 22 Sep 2021 13:20:59 +0000 (15:20 +0200)]
Merge pull request #4510 from WoltLab/wcfsetup-https

Check whether WCFSetup is accessed using HTTPS

2 years agoMerge pull request #4509 from WoltLab/str-x-with
Tim Düsterhus [Wed, 22 Sep 2021 13:18:12 +0000 (15:18 +0200)]
Merge pull request #4509 from WoltLab/str-x-with

Deprecate StringUtil::(starts|ends)With()

2 years agoCheck whether WCFSetup is accessed using HTTPS
Tim Düsterhus [Wed, 22 Sep 2021 13:08:47 +0000 (15:08 +0200)]
Check whether WCFSetup is accessed using HTTPS

Resolves #4502

2 years agoFix typo in setup_en.xml
Tim Düsterhus [Wed, 22 Sep 2021 12:55:44 +0000 (14:55 +0200)]
Fix typo in setup_en.xml

2 years agoSort neededFilesPattern in install.php
Tim Düsterhus [Wed, 22 Sep 2021 12:33:56 +0000 (14:33 +0200)]
Sort neededFilesPattern in install.php

2 years agoInline error handler and exception handler in install.php
Tim Düsterhus [Wed, 22 Sep 2021 12:28:26 +0000 (14:28 +0200)]
Inline error handler and exception handler in install.php

2 years agoSynchronize error handling in install.php with core.functions.php
Tim Düsterhus [Wed, 22 Sep 2021 12:23:35 +0000 (14:23 +0200)]
Synchronize error handling in install.php with core.functions.php

The previous error handling:

a) was buggy. It failed during stack trace printing under certain
   circumstances.
b) was outdated with regard to the design.

2 years agoAvoid the use of $_REQUEST in install.php
Tim Düsterhus [Wed, 22 Sep 2021 11:59:54 +0000 (13:59 +0200)]
Avoid the use of $_REQUEST in install.php

2 years agoRemove useless file_exists() check for composer autoloader in install.php
Tim Düsterhus [Wed, 22 Sep 2021 11:45:40 +0000 (13:45 +0200)]
Remove useless file_exists() check for composer autoloader in install.php

The autoloader must exist at that point.

2 years agoRemove unnamespaced IPrintableException from install.php
Tim Düsterhus [Wed, 22 Sep 2021 10:37:07 +0000 (12:37 +0200)]
Remove unnamespaced IPrintableException from install.php

2 years agoClean up `$prefix` generation in install.php
Tim Düsterhus [Wed, 22 Sep 2021 10:33:58 +0000 (12:33 +0200)]
Clean up `$prefix` generation in install.php

2 years agoRemove unused methods from BasicFileUtil in install.php
Tim Düsterhus [Wed, 22 Sep 2021 10:33:17 +0000 (12:33 +0200)]
Remove unused methods from BasicFileUtil in install.php

2 years agoRemove `is_countable` polyfill from install.php
Tim Düsterhus [Wed, 22 Sep 2021 10:30:54 +0000 (12:30 +0200)]
Remove `is_countable` polyfill from install.php

see a178c052b8ecc5b1306607955702d6acf2ac254e

2 years agoRemove `escapeString()` from install.php
Tim Düsterhus [Wed, 22 Sep 2021 10:30:10 +0000 (12:30 +0200)]
Remove `escapeString()` from install.php

see 270ed434d4dc8a44862b38715b826f63943bfcb0

2 years agoReplace use of `StringUtil::endsWith()` by `\str_ends_with()`
Tim Düsterhus [Wed, 22 Sep 2021 09:56:37 +0000 (11:56 +0200)]
Replace use of `StringUtil::endsWith()` by `\str_ends_with()`

2 years agoReplace use of `StringUtil::startsWith()` by `\str_starts_with()`
Tim Düsterhus [Wed, 22 Sep 2021 09:54:14 +0000 (11:54 +0200)]
Replace use of `StringUtil::startsWith()` by `\str_starts_with()`

2 years agoDeprecate `StringUtil::(starts|ends)With()`
Tim Düsterhus [Wed, 22 Sep 2021 09:59:11 +0000 (11:59 +0200)]
Deprecate `StringUtil::(starts|ends)With()`

`\str_starts_with()` and `\str_ends_with()` are both polyfilled by
`symfony/polyfill-php80`.

2 years agoRun php-cs-fixer using PHP 8.0
Tim Düsterhus [Wed, 22 Sep 2021 10:20:39 +0000 (12:20 +0200)]
Run php-cs-fixer using PHP 8.0

2 years agoMerge pull request #4507 from WoltLab/polyfill
Tim Düsterhus [Wed, 22 Sep 2021 09:05:05 +0000 (11:05 +0200)]
Merge pull request #4507 from WoltLab/polyfill

Use Symfony's PHP polyfills

2 years agoMerge pull request #4508 from WoltLab/search-index-manager-cleanup
Tim Düsterhus [Wed, 22 Sep 2021 09:01:41 +0000 (11:01 +0200)]
Merge pull request #4508 from WoltLab/search-index-manager-cleanup

Remove add() and update() from ISearchIndexManager

2 years agoIncorrect type comparison when the legacy mysql extension is been used
Marcel Werk [Wed, 22 Sep 2021 08:57:09 +0000 (10:57 +0200)]
Incorrect type comparison when the legacy mysql extension is been used

2 years agoRemove add() and update() from ISearchIndexManager
Tim Düsterhus [Wed, 22 Sep 2021 08:36:53 +0000 (10:36 +0200)]
Remove add() and update() from ISearchIndexManager

These methods are long-deprecated, remove them from the interface to not force
search engine authors to implement these.

It is expected that code consuming the search API uses the `SearchIndexManager`
class instead of directly accessing a specific `*SearchIndexManager`. The
`SearchIndexManager` only uses `->set()` on the underlying actual
`*SearchIndexManager`. Thus no compatibility break is expected.

2 years agoSatisfy the PHP syntax check in GitHub Actions
Tim Düsterhus [Wed, 22 Sep 2021 07:57:33 +0000 (09:57 +0200)]
Satisfy the PHP syntax check in GitHub Actions

The PHP 7.3 polyfill fails for PHP 7.3, because of a duplicate class
declaration. This file is not actually loaded in new PHP versions, thus we can
ignore it.

2 years agoRemove custom `is_countable` polyfill from core.functions.php
Tim Düsterhus [Tue, 21 Sep 2021 15:40:15 +0000 (17:40 +0200)]
Remove custom `is_countable` polyfill from core.functions.php

This is provided by symfony/polyfill-php73.

2 years agoAdd symfony/polyfill-php73 and symfony/polyfill-php74
Tim Düsterhus [Tue, 21 Sep 2021 15:39:52 +0000 (17:39 +0200)]
Add symfony/polyfill-php73 and symfony/polyfill-php74

2 years agoDeprecate the escapeString() helper (#4506)
Tim Düsterhus [Tue, 21 Sep 2021 15:39:14 +0000 (17:39 +0200)]
Deprecate the escapeString() helper (#4506)

Developers are strongly encouraged to use prepared statements. If this is not
possible for compatibility reasons, they should use the `->escapeString()`
method directly.

Deprecating the helper ultimately allows cleaning up core.functions.php which
has become a dumping ground for all type of stuff over time.

Co-authored-by: Alexander Ebert <ebert@woltlab.com>
2 years agoStop using the `escapeString` helper in MysqlSearchEngine
Tim Düsterhus [Tue, 21 Sep 2021 15:11:41 +0000 (17:11 +0200)]
Stop using the `escapeString` helper in MysqlSearchEngine

2 years agoMerge branch '5.4'
Tim Düsterhus [Tue, 21 Sep 2021 14:58:37 +0000 (16:58 +0200)]
Merge branch '5.4'

2 years agoMerge branch '5.3' into 5.4
Tim Düsterhus [Tue, 21 Sep 2021 14:58:07 +0000 (16:58 +0200)]
Merge branch '5.3' into 5.4

2 years agoMerge branch '5.4'
Tim Düsterhus [Tue, 21 Sep 2021 14:56:26 +0000 (16:56 +0200)]
Merge branch '5.4'

2 years agoMerge pull request #4497 from max-m/patch-categoryMultiSelectOptionType
Marcel Werk [Tue, 21 Sep 2021 14:53:14 +0000 (16:53 +0200)]
Merge pull request #4497 from max-m/patch-categoryMultiSelectOptionType

Make `categoryMultiSelectOptionType.tpl` behave like `categoryOptionList.tpl`