summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Fix return type of addStorageWrapper in PHPDocVincent Petry2015-01-271-1/+1
| | | |
| * | | Preserve mtime when doing cross storage moveRobin Appelman2015-01-231-3/+10
| | | |
| * | | Apply wrappers to existing mounts before registering itRobin Appelman2015-01-232-8/+11
| | | |
| * | | removeStorageWrapper to unregister a storage wrapperVincent Petry2015-01-232-3/+24
| | | |
| * | | Do not call wrapStorage if storate with same name added twiceVincent Petry2015-01-223-1/+12
| | | |
* | | | Merge pull request #13699 from owncloud/check-if-file-existsMorris Jobke2015-01-271-1/+3
|\ \ \ \ | | | | | | | | | | Use `file_exists` to verify that config file exists
| * | | | Use `file_exists` to verify that config file existsLukas Reschke2015-01-271-1/+3
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | There might be the case that `fopen($file, 'r')` returns false and thus ownCloud might believe that the config file is empty and thus potentially leading to an overwrite of the config file. This changeset introduces `file_exists` again which was used in ownCloud 5 where no such problems where reported and should not be affected by such problems. Ref https://github.com/owncloud/core/issues/12785#issuecomment-71548720
* | | | Merge pull request #13701 from owncloud/disable-appcode-checkerLukas Reschke2015-01-271-1/+1
|\ \ \ \ | | | | | | | | | | disable the app code checker - some previous shipped apps cannot be inst...
| * | | | disable the app code checker - some previous shipped apps cannot be ↵Thomas Müller2015-01-271-1/+1
| | | | | | | | | | | | | | | | | | | | installed from the appstore now :facepunch:
* | | | | Merge pull request #13676 from owncloud/fix-node-ifaceThomas Müller2015-01-272-3/+2
|\ \ \ \ \ | |/ / / / |/| | | | Fix node interface
| * | | | fix node interfaceBernhard Posselt2015-01-262-3/+2
| | | | |
* | | | | Merge pull request #13694 from ↵Thomas Müller2015-01-271-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | owncloud/little-bit-more-descriptive-htaccess-error Make error more descriptive
| * | | | | Make error more descriptiveLukas Reschke2015-01-261-1/+1
| | |/ / / | |/| | | | | | | | | | | | | Ref https://github.com/owncloud/core/issues/13693#issuecomment-71546767
* | | | | [tx-robot] updated from transifexJenkins for ownCloud2015-01-272-0/+4
| | | | |
* | | | | certificate manager should always use a \OC\Files\View otherwise we will get ↵Bjoern Schiessle2015-01-262-16/+20
| | | | | | | | | | | | | | | | | | | | problems for different primary storages
* | | | | certificate manager only needs the user-id, no need to pass on the complete ↵Bjoern Schiessle2015-01-262-11/+14
|/ / / / | | | | | | | | | | | | user object
* | | | Merge pull request #13621 from owncloud/system-config-multisetThomas Müller2015-01-2611-89/+174
|\ \ \ \ | |/ / / |/| | | Add a method to set/unset multiple config values with one write
| * | | naming fixes while reviewingThomas Müller2015-01-262-14/+16
| | | |
| * | | Use setConfigs() instead of calling setConfig() multiple timesJoas Schilling2015-01-236-54/+54
| | | |
| * | | Add a method to set/unset multiple config values in one callJoas Schilling2015-01-235-22/+105
| | | | | | | | | | | | | | | | | | | | This reduces the number of file writes we do for config.php and therefor hopefully helps lowering the chances for empty config.php files
* | | | [tx-robot] updated from transifexJenkins for ownCloud2015-01-262-0/+2
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2015-01-256-0/+8
| | | |
* | | | [tx-robot] updated from transifexJenkins for ownCloud2015-01-2466-2/+162
| | | |
* | | | Merge pull request #13626 from owncloud/check-for-hhvmClark Tomlinson2015-01-231-0/+14
|\ \ \ \ | | | | | | | | | | Don't check for `always_populate_raw_post_data` on HHVM
| * | | | Don't check for `always_populate_raw_post_data` on HHVMLukas Reschke2015-01-231-0/+14
| |/ / / | | | | | | | | | | | | | | | | | | | | HHVM seems to have problems with this at the moment (even setting those values in the php.ini of HHVM doesn't have helped much) and thus the unit test execution failed. So it's better if we disable this check for now for HHVM.
* / / / Do not retrieve shares through group if user has no groupVincent Petry2015-01-231-20/+22
|/ / /
* | | Merge pull request #13593 from owncloud/add-check-for-raw-post-dataMorris Jobke2015-01-221-2/+17
|\ \ \ | | | | | | | | Add check for `HTTP_RAW_POST_DATA` setting for >= 5.6
| * | | translate error messagesMorris Jobke2015-01-221-4/+4
| | | |
| * | | Add check for `HTTP_RAW_POST_DATA` setting for >= 5.6Lukas Reschke2015-01-221-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | PHP 5.6 otherwise throws notices for perfectly valid code which results in broken endpoints. Fixes https://github.com/owncloud/core/issues/13592
* | | | Merge pull request #13314 from owncloud/login-hook-logoutMorris Jobke2015-01-224-12/+36
|\ \ \ \ | | | | | | | | | | Return false if the login is canceled in a hook
| * | | | Throw an exception when login is canceled by an appRobin Appelman2015-01-223-11/+33
| | | | |
| * | | | Allow custom error messages for the login pageRobin Appelman2015-01-221-1/+3
| | | | |
| * | | | Return false if the login is canceled in a hookRobin Appelman2015-01-131-1/+1
| | | | |
* | | | | Merge pull request #13449 from owncloud/image_preview_limitThomas Müller2015-01-221-0/+7
|\ \ \ \ \ | | | | | | | | | | | | add config-option for an image's maximum filesize when generating previews
| * | | | | add config-option for an image's maximum filesize when generating previewsGeorg Ehrke2015-01-221-0/+7
| | | | | |
* | | | | | remove insane debug-log from OC_ImageGeorg Ehrke2015-01-221-1/+0
| | | | | |
* | | | | | Merge pull request #13598 from owncloud/fix-undefined-offsetThomas Müller2015-01-221-0/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix undefined offset 1 for wrong user mail address
| * | | | | | Fix undefined offset 1 for wrong user mail addressMorris Jobke2015-01-221-0/+3
| | |_|/ / / | |/| | | | | | | | | | | | | | | | * fixes Undefined offset: 1 at lib/private/mail.php#143
* | | | | | Merge pull request #13600 from owncloud/server-warningThomas Müller2015-01-221-39/+36
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Get rid of log warning when using servercontainer
| * | | | | get rid of log warning when using servercontainerBernhard Posselt2015-01-221-39/+36
| | | | | |
* | | | | | Merge pull request #13509 from owncloud/share-deletechildrenwhenunsharefromgroupMorris Jobke2015-01-222-9/+21
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix reshare permission change to not impair other deletion code
| * | | | | | Fix reshare permission change to not impair other deletion codeVincent Petry2015-01-222-9/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A recent change that prevents reshare permission changes to delete group share children had the side-effect of also preventing group share children deletion when it needed to be done. This fix adds an extra flag to isolate the "reshare permission change" deletion case and keep the other ones as they were before, not only to fix the regression but also fix other potential regressions in code that uses this method. Also updated the comment because now Helper::delete() is no longer limited to reshares but also applies to group share children.
* | | | | | | Merge pull request #13552 from owncloud/request-uri-double-slashThomas Müller2015-01-211-0/+2
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | Remove duplicated slashes from the requested url
| * | | | | | Remove duplicated slashes from the requested urlRobin Appelman2015-01-211-0/+2
| | |_|_|_|/ | |/| | | |
* / | | | | Set the debugoutput channel to error_log instead of echoing itJoas Schilling2015-01-211-0/+1
|/ / / / /
* | | | | [tx-robot] updated from transifexJenkins for ownCloud2015-01-214-12/+14
| | | | |
* | | | | Merge pull request #13499 from owncloud/issue/13451-redis-json-encodeThomas Müller2015-01-201-4/+4
|\ \ \ \ \ | | | | | | | | | | | | Issue/13451 redis json encode
| * | | | | Json_(en|de)code values on redis to be able to cache arraysJoas Schilling2015-01-201-4/+4
| | |/ / / | |/| | |
* / | | | Fix WebDAV auth for session authentication onlyLukas Reschke2015-01-202-3/+5
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | \Sabre\DAV\Auth\Backend\AbstractBasic::authenticate was only calling \OC_Connector_Sabre_Auth::validateUserPass when the response of \Sabre\HTTP\BasicAuth::getUserPass was not null. However, there is a case where the value can be null and the user could be authenticated anyways: The authentication via ownCloud web-interface and then accessing WebDAV resources. This was not possible anymore with this patch because it never reached the code path in this scenario. This patchs allows authenticating with a session without isDavAuthenticated value stored (this is for ugly WebDAV clients that send the cookie in any case) and thus the functionality should work again. To test this go to the admin settings and test if the WebDAV check works fine. Furthermore all the usual stuff (WebDAV / Shibboleth / etc...) needs testing as well.
* | | | [tx-robot] updated from transifexJenkins for ownCloud2015-01-202-0/+20
| | | |