| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Remove delete button in shared with others list
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Whenever a file is shared with others or with link, a delete button used
to be visible that triggered a direct deletion.
This button has been removed to avoid accidental deletion from people
who might believe it was an unshare button. Unsharing is still possible
inside the share dropdown.
|
|\ \
| | |
| | | |
Port 12154
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Remove all ports from the trusted domains
Conflicts:
lib/private/repair.php
lib/repair/repairconfig.php
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This lead to a lot of confusion in the past and did not really offer any value. Let's remove the port check therefore. (it's anyways not really a part of the domain)
Fixes https://github.com/owncloud/core/issues/12150 and https://github.com/owncloud/core/issues/12123 and also a problem reported by @DeepDiver1975.
Conflicts:
lib/private/request.php
|
|\ \ \
| | | |
| | | | |
Added function to load translations from JS
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
For apps that support async translation loading, a new function
OC.L10N.load() can be used to asynchronously load the translations
for a given app.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Show warning when invalid user was passed
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Sometimes there are bugs that cause setupFS() to be called for
non-existing users. Instead of failing hard and breaking the instance,
this fix simply logs a warning.
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
Warn for password reset when files_encryption is enabled
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Creating a new key pair can take 1-2 seconds. So it could happen that the user click the "Reset password" button again which can lead to many nasty things, e.g. we could create two new key pairs in parallel.
|
| | | | |
| | | | |
| | | | |
| | | | | |
key pair for the user
|
| | | | |
| | | | |
| | | | |
| | | | | |
new key-pair
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
THX @schiesbn
(I should setup a mail server on my local system...)
|
| | | | | |
|
| | | | | |
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This patch wil warn the user of the consequences when resetting the password and requires checking a checkbox (as we had in the past) to reset a password.
Furthermore I updated the code to use our new classes and added some unit tests for it :dancers:
Fixes https://github.com/owncloud/core/issues/11438
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
owncloud/undelete-only-if-files-trashin-is-enabled
Only show undelete capability if files_trashbin is enabled
|
| | | | |
| | | | |
| | | | |
| | | | | |
Fixes the OCS capability API at /ocs/v1.php/cloud/capabilities
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
User management search just searches users - adjust label of input field...
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
fixes #10229
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
drop unneeded var_dump - fixes #9997
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Replace deprecated switches
|
| | | | |
| | | | |
| | | | |
| | | | | |
Warning: -convert-to is deprecated. Use --convert-to instead.
Warning: -outdir is deprecated. Use --outdir instead.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Use full path instead of only the filename
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
files in a subdirectory will not get properly resolved and an empty filesize is returned.
This feature only exists on master.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
make sure that we don't find the wrong shares if a user and a group have the same ID
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
and groups with the same ID exists
|
| | |_|/
| |/| |
| | | |
| | | | |
same ID
|
|\ \ \ \
| | | | |
| | | | | |
Fix type hinting for app manager
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
Check if the size field is available
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In some cases the 'size' field is not available resulting in some PHP errors such as:
```json
{"reqId":"03548fd9e3d3aca15a5796b3b35d7b9d","remoteAddr":"::1","app":"PHP","message":"Undefined index: size at \/Users\/lreschke\/Programming\/core\/lib\/private\/files\/fileinfo.php#125","level":3,"time":"2014-11-17T21:38:57+00:00"}
```
This can be experienced when creating a new empty file and deleting it right away, then when going to the trash bin this error is thrown.
|
|\ \ \
| | | |
| | | | |
Remove unused code
|
| | | |
| | | |
| | | |
| | | | |
We don't support direct updates from older ownCloud versions except the previous one therefore this code is unused and can be removed.
|
|\ \ \ \
| | | | |
| | | | | |
Make declaration compatible
|
| | |/ /
| |/| |
| | | |
| | | | |
Fixes #12236
|