- Mar 22, 2016
-
-
Joas Schilling authored
-
- Mar 21, 2016
-
-
Joas Schilling authored
-
Lukas Reschke authored
This modifies the logger to add the following logging information by default: - Request Method - Request URL - Current user
-
Vincent Petry authored
-
Joas Schilling authored
-
Jenkins for ownCloud authored
-
- Mar 20, 2016
-
-
Roeland Jago Douma authored
-
Jenkins for ownCloud authored
-
- Mar 19, 2016
-
-
Jenkins for ownCloud authored
-
- Mar 18, 2016
-
-
Jenkins for ownCloud authored
-
- Mar 17, 2016
-
-
Lukas Reschke authored
The ownCloud update routine also runs the "updateHtaccess" code in case only an application gets updated. This leads to having entries multiple time in the .htaccess file leading to unpredictable behaviour. With 9.0 we added the "#### DO NOT CHANGE ANYTHING ABOVE THIS LINE ####" entry to the .htaccess file, this change uses it to ensure that only to the .htaccess gets written if the file has not been modified already. Since the .htaccess modifications are optional this is not a big deal. Without this change updates of applications can break the rewrite rules (ending in endless redirects) as well as breaking the code integrity checker.
-
Lukas Reschke authored
PATH_INFO will be empty at this point and thus the logic in base.php did not catch this. Changing this to "getRawPathInfo" will ensure that the path info is properly read. Fixes https://github.com/owncloud/core/issues/23199
-
Lukas Reschke authored
This code is not used anymore.
-
Lukas Reschke authored
While all callers do this as well this prevents a misuse of the API by mistake.
-
- Mar 16, 2016
-
-
Manish Bisht authored
Error Fixed combined the database errors Merged Database Errors
-
Lukas Reschke authored
In case of a move operation from an unencrypted to an encrypted storage the old encrypted version would stay with "0" while the correct value would be "1". Thus we manually set the value to "1" for those cases. See also https://github.com/owncloud/core/issues/23078
-
Jenkins for ownCloud authored
-
- Mar 15, 2016
-
-
Robin McCorkell authored
A PreconditionNotMetException must only be thrown if explicit preconditions are specified for setValues(), not if the value is merely the same as was already in the DB.
-
Robin Appelman authored
-
Roeland Jago Douma authored
fixes #23197 * Updated unit test
-
Lukas Reschke authored
-
Lukas Reschke authored
-
Lukas Reschke authored
-
- Mar 14, 2016
-
-
Phiber2000 authored
-
Joas Schilling authored
-
Joas Schilling authored
-
Morris Jobke authored
-
Jenkins for ownCloud authored
-
- Mar 13, 2016
-
-
Roeland Jago Douma authored
* Might fix an issue on oracle
-
- Mar 12, 2016
-
-
Lukas Reschke authored
Can also return `null` as per PHPDoc. Regression added by https://github.com/owncloud/core/commit/97f5c095f4018119e15d7c612a685da1dc91a340 Fixes https://github.com/owncloud/core/issues/23145
-
Lukas Reschke authored
Fixes https://github.com/owncloud/core/issues/23136
-
Lukas Reschke authored
Fixes https://github.com/owncloud/core/issues/23168
-
Jenkins for ownCloud authored
-
- Mar 11, 2016
-
-
David Baucum authored
OC_Utils::checkServer makes an unnecessary call to $config->getSystemValue('installed', false), which replicates the call made immediately before it during the call to needUpgrade.
-
Robin Appelman authored
-
Roeland Jago Douma authored
The phpdoc for the sharing functions was very restrictive. As a consequence passing node object (for example from the OCS Share API where we don't really care if it is a file or folder), would actually be invalid. With this loser restriction the interfaces become more generic.
-
Jenkins for ownCloud authored
-
- Mar 10, 2016
-
-
Lukas Reschke authored
The setup uses `\OCP\IRequest::getInsecureServerHost` which in some cases can also include a port. This makes the trusted domain check fail thus. I've decided to add this here that way because adjusting the setup would require parsing the host properly. This is not something that can be done very good in PHP. Check the following example for why `parse_url` is not our friend: https://3v4l.org/k501Z
-
Roeland Jago Douma authored
* Better phpdoc * Promper use statements * Unused parameter
-