summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2021-07-082-0/+4
|
* Fix in locking cache checkMichaIng2021-07-061-1/+1
| | | | | The intention obviously was to check whether $lockingCacheClass is defined, and existing class, and available. It was however checked whether the $distributedCacheClass is an existing class, which would have caused an exception already in the previous distributed cache check. Signed-off-by: MichaIng <micha@dietpi.com>
* [tx-robot] updated from transifexNextcloud bot2021-07-062-0/+4
|
* Merge pull request #27107 from nextcloud/backport/27043/stable21John Molakvoæ2021-07-011-6/+15
|\
| * fix return value of getStorageInfo when 'quota_include_external_storage' is ↵Robin Appelman2021-05-251-6/+15
| | | | | | | | | | | | enabled Signed-off-by: Robin Appelman <robin@icewind.nl>
* | [tx-robot] updated from transifexNextcloud bot2021-07-014-14/+14
| |
* | [tx-robot] updated from transifexNextcloud bot2021-06-282-2/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2021-06-276-8/+10
| |
* | [tx-robot] updated from transifexNextcloud bot2021-06-262-0/+2
| |
* | Unshift crash reports when they are loaded, to break the recusionChristoph Wurst2021-06-251-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If, for whatever reason, during the loading of a crash reporter a new log entry is generated, then the lazy loading mechanism will be invoked *again* while it's already executed. This doesn't result in an endless recursion, but means that the crash reporters will be built and registered many times. This then means any further log entry will be logged x times instead of once. Unshift makes sure to take the class off the registration list right away, so another invokation of the same method won't try to do the same job. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | [tx-robot] updated from transifexNextcloud bot2021-06-252-0/+34
| |
* | [tx-robot] updated from transifexNextcloud bot2021-06-244-14/+14
| |
* | fix error when using CORS with no auth credentialskorelstar2021-06-231-5/+4
| |
* | [tx-robot] updated from transifexNextcloud bot2021-06-232-0/+16
| |
* | Remove throwing annotationLukas Reschke2021-06-221-3/+0
| | | | | | | | | | | | This class was just introduced in Nc 21. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | Use execute instead of executeStatementLukas Reschke2021-06-221-1/+1
| | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | Properly cleanup entries of WebAuthn on user deletionMorris Jobke2021-06-224-0/+65
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | [tx-robot] updated from transifexNextcloud bot2021-06-224-2/+4
| |
* | [tx-robot] updated from transifexNextcloud bot2021-06-202-0/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2021-06-194-8/+10
| |
* | [tx-robot] updated from transifexNextcloud bot2021-06-1812-0/+12
| |
* | [tx-robot] updated from transifexNextcloud bot2021-06-17136-324/+324
| |
* | Merge pull request #27415 from nextcloud/backport/26494/stable21Julius Härtl2021-06-143-4/+8
|\ \
| * | Check whether output buffering is active before turning it offRichard de Boer2021-06-071-2/+6
| | | | | | | | | | | | | | | | | | | | | Before we just turned it off and @suppressed the error if ob was not active. In PHP 8 this error is no longer suppressed, so try to not cause it at all. Signed-off-by: Richard de Boer <git@tubul.net>
| * | Fix a usort comparison function returning a boolean instead of an integerRichard de Boer2021-06-071-1/+1
| | | | | | | | | | | | | | | | | | PHP 8 shows deprecation warnings about this, see #25806 Signed-off-by: Richard de Boer <git@tubul.net>
| * | Fix functions taking optional parameters before required onesRichard de Boer2021-06-071-1/+1
| | | | | | | | | | | | | | | | | | | | | PHP 8 shows deprecation warnings about this, see #25806 Removes the "default" values, as they actually are required parameters anyway. Signed-off-by: Richard de Boer <git@tubul.net>
* | | [tx-robot] updated from transifexNextcloud bot2021-06-132-2/+12
| | |
* | | [tx-robot] updated from transifexNextcloud bot2021-06-124-2/+4
| | |
* | | Merge pull request #27303 from nextcloud/backport/27062/stable21Julius Härtl2021-06-091-7/+2
|\ \ \ | | | | | | | | [stable21] properly use limit and offset for search in Jail wrapper
| * | | properly use limit and offset for search in Jail wrapperRobin Appelman2021-05-311-7/+2
| | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | [tx-robot] updated from transifexNextcloud bot2021-06-092-26/+26
| | | |
* | | | [tx-robot] updated from transifexNextcloud bot2021-06-082-0/+2
| |/ / |/| |
* | | Merge pull request #27336 from nextcloud/backport/27329/stable21Morris Jobke2021-06-071-0/+5
|\ \ \ | | | | | | | | [stable21] Propagate throttling on OCS response
| * | | Propagate throttling on OCS responseLukas Reschke2021-06-011-0/+5
| |/ / | | | | | | | | | | | | | | | The BaseResponse converter did not take over any throttling state from the DataResponse. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | | Merge pull request #27359 from nextcloud/backport/27354/stable21Morris Jobke2021-06-071-6/+2
|\ \ \ | | | | | | | | [stable21] Escape filename in Content-Disposition
| * | | Escape filename in Content-DispositionLukas Reschke2021-06-021-6/+2
| |/ / | | | | | | | | | | | | | | | We should escape all occurences of ' and \ in here. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* | | [tx-robot] updated from transifexNextcloud bot2021-06-072-0/+2
| | |
* | | Merge pull request #27333 from nextcloud/backport/27328/stable21John Molakvoæ2021-06-061-0/+12
|\ \ \ | | | | | | | | [stable21] emit UserLoggedInEvent on apache auth
| * | | emit UserLoggedInEvent on apache authArthur Schiwon2021-06-011-0/+12
| |/ / | | | | | | | | | | | | | | | - post_login OC_Hook is barely used or listened to Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* | | [tx-robot] updated from transifexNextcloud bot2021-06-062-0/+2
| | |
* | | Set umask before operations that create local filesRobin Appelman2021-06-041-4/+16
| | | | | | | | | | | | | | | | | | this solves issues where "other php stuff" is messing with the umask Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | Merge pull request #27347 from nextcloud/backport/27053/stable21Joas Schilling2021-06-041-3/+2
|\ \ \ | | | | | | | | [stable21] Don't throw when comments is disabled
| * | | Don't throw when comments is disabledJoas Schilling2021-06-021-3/+2
| |/ / | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Merge pull request #27334 from nextcloud/backport/25770/stable21Joas Schilling2021-06-041-26/+6
|\ \ \ | | | | | | | | [stable21] Don't allow executing cli if cache backend is unavailable
| * | | Don't allow executing cli if cache backend is unavailableRichard Steinmetz2021-06-011-26/+6
| |/ / | | | | | | | | | Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
* | | [tx-robot] updated from transifexNextcloud bot2021-06-0412-56/+78
| | |
* | | [tx-robot] updated from transifexNextcloud bot2021-06-0354-110/+112
|/ /
* | [tx-robot] updated from transifexNextcloud bot2021-05-312-2/+2
| |
* | [tx-robot] updated from transifexNextcloud bot2021-05-302-2/+2
| |
* | Use noreply@ as email address for share emailsMorris Jobke2021-05-281-1/+1
| | | | | | | | | | | | | | | | Fixes #26683 Before it used the instance name, which a) doesn't make sense to randomly guess email addresses and b) could contain characters that are not allowed in email addresses like spaces. Signed-off-by: Morris Jobke <hey@morrisjobke.de>