| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|\
| |
| | |
Prevent wrapping null storage
|
| |
| |
| |
| |
| |
| | |
Can happen when trying to instantiate external storages that have
incomplete config, where the constructor throws an exception (the
exception is caught in createStorage())
|
|\ \
| |/
|/| |
Call final unlink in trash wrapper's storage
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
owncloud/add-warning-if-restore-of-data-is-not-possible
Add value if restore of data is possible for a user
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* reason: nice to know before password change in user management
* restore is possible:
* encryption is disabled
* encryption is enabled, admin and user has checked the
restore option
* if not possible:
* highlight users row in red once the admin wants to change the password
* show also a little tipsy
|
| | |
| | |
| | |
| | | |
problems for different primary storages
|
|/ /
| |
| |
| | |
user object
|
|\ \
| | |
| | | |
Add a method to set/unset multiple config values with one write
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
This reduces the number of file writes we do for config.php and therefor
hopefully helps lowering the chances for empty config.php files
|
|/ / |
|
| |
| |
| |
| | |
* fixes Undefined offset: 1 at lib/private/mail.php#143
|
|\ \
| | |
| | | |
Fix reshare permission change to not impair other deletion code
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| | | |
| | | | |
Remove duplicated slashes from the requested url
|
| | |/
| |/| |
|
|/ /
| |
| |
| |
| |
| | |
Moved external share JS code into a small plugin to make it testable.
Added unit test for the external share dialog logic + ajax calls.
|
| | |
|
|/ |
|
|\
| |
| |
| |
| | |
owncloud/share-fixfindshareforuserwithmultiplegroups
Fix getItemSharedWithUser for groups
|
| |
| |
| |
| |
| |
| | |
Fixed SQL query for whenever a user has more than one group.
Added missing $owner where clause for group lookup.
Added unit tests for the group cases.
|
| |
| |
| |
| |
| |
| | |
Previously when $gid was empty the users were not filtered at all. Rendering the search function in the user management pretty useless.
Fixes itself
|
|\ \
| |/
|/| |
replace line breaks in the app description by spaces - fixes #13315
|
| |
| |
| |
| |
| |
| | |
* replace line breaks (on non empty lines) in the app description by spaces
* fixes #13315
* includes unit tests
|
|\ \
| | |
| | | |
Mask table and column names with backticks and add lastInsertID() workar...
|
| | | |
|
| | | |
|
|/ /
| |
| |
| |
| |
| | |
prefer url parameters passed into the main method. If they are not present, use the containers urlParameters
add space
|
|\ \
| | |
| | | |
HHVM: Prevent E_WARNING messages by Redis test in console output.
|
| |/ |
|
|\ \
| | |
| | | |
Return valid fileinfo objects for part files
|
| | | |
|
|\ \ \
| | | |
| | | | |
Add a repair step to clean up orphan tags and tag entries
|
| | |/
| |/| |
|
|/ / |
|
|/
|
|
|
|
|
| |
The internal path was matched without the last "/" which caused
"files_trashbin" to also match when the internal path was "files".
This adds the missing slash for the comparison.
|
|
|
|
|
|
| |
The check for invalid paths is actually over-complicated and performed twice resulting in a performance penalty. Additionally, I decided to add unit-tests to that function.
Part of https://github.com/owncloud/core/issues/13221
|
|\
| |
| | |
HHVM Workaround: Do not use Exception from Stream.
|
| |
| |
| |
| | |
Works around https://github.com/facebook/hhvm/issues/2436#issuecomment-69351373
|
|\ \
| | |
| | | |
Trim leading or trailing slashes in file cache paths
|
| | | |
|
|\ \ \
| | | |
| | | | |
Use Doctrines filter by table name
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Logfile download
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
add logSettingsController
add download logfile button
move getEntries to LogSettingsController
move set log level to logsettingscontroller.php
add warning if logfile is bigger than 100MB
add unit test for set log level
fix typecasting, add new line at EoF
show log and logfile download only if log_type is set to owncloud
add unit test for getFilenameForDownload
|
| |_|/ /
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Currently if a user does not replace the .htaccess file with the new update this can lead to serious problems in case Apache is used as webserver.
This commit adds the version to the .htaccess file and the update routine fails in case not the newest version is specified in there. This obviously means that every release has to update the version specified in .htaccess as well. But I see no better solution for it.
Conflicts:
lib/private/updater.php
|