summaryrefslogtreecommitdiffstats
path: root/settings
Commit message (Collapse)AuthorAgeFilesLines
* [stable8] add note about SSL in admin settingsMorris Jobke2015-07-281-0/+1
| | | | | * reborn #16867 * fixes #16778
* Add oc version to app store requests in stable8Joas Schilling2015-06-291-1/+1
|
* Add check for availability of /dev/urandomLukas Reschke2015-05-271-0/+18
| | | | Backport of https://github.com/owncloud/core/pull/16565 to stable8
* Correctly split and join group list with | instead of ,Joas Schilling2015-04-021-2/+2
|
* Remove hard dependency on cURL for 8.0Lukas Reschke2015-03-231-1/+2
| | | | | | This removes the recently introduced hard dependency on cURL for 8.0, for 8.1 it will still stay there. Instead a warning will now be shown to the user asking to install the PHP cURL extension within the administrative interface of ownCloud.
* show a better error message when trying to create a user that already existsRobin Appelman2015-03-201-0/+9
|
* Merge pull request #14632 from owncloud/backport/14593Morris Jobke2015-03-112-0/+23
|\ | | | | Backport/14593
| * Add detection for invalid CLI configuration for settings pageLukas Reschke2015-03-022-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This change will log all failures that prevent the CLI cronjob from happening to the database and display a warning to administrators when an error happened. To test: 1. Configure some invalid CLI php.ini settings 2. Enable the CLI cronjob and run php cron.php 3. See the errors printed and also in the admin page 4. Configure the CLI settings correctly 5. Errors should be gone. Fixes https://github.com/owncloud/core/issues/13994
* | display app update error messages - fixes #14611Thomas Müller2015-03-111-1/+5
| |
* | Fix totally broken AppStoreLukas Reschke2015-03-052-4/+2
|/ | | | | | | | | | | | | | As it turned out the AppStore code was completely broken when it came from apps delivered from the appstore, this meant: 1. You could not disable and then re-enable an application that was installed from the AppStore. It simply failed hard. 2. You could not disable apps from the categories but only from the "Activated" page 3. It did not show the activation state from any category page This code is completely static and thus testing it is impossible. We really have to stop with "let's add yet another feature in already existing static code". Such stuff has to get refactored first. That said, this code works from what I can say when clicking around in the AppStore page GUI. However, it may easily be that it does not work with updates or whatsever as I have no chance to test that since the AppStore code is not open-source and it is impossible to write unit-tests for that. Fixes https://github.com/owncloud/core/issues/14711
* Use APCu only if available in version 4.0.6 and higherLukas Reschke2015-02-172-0/+19
| | | | | | | | APCu before 4.0.6 is unbelievable buggy and tend to segfault the PHP process (i.e. the whole webserver) This potentially fixes https://github.com/owncloud/core/issues/14175 Requires a backport to stable8
* Return milliseconds instead of seconds for lastLogin - refs #14005Thomas Müller2015-02-161-1/+1
|
* Update tr.jsonVolkan Gezer2015-02-151-2/+2
|
* fix typoVolkan Gezer2015-02-151-1/+1
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-02-0626-126/+186
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-02-0614-16/+34
|
* Coherent use of "SQLite" in lines 119 and 124cmeh2015-02-061-1/+1
| | | Just a cosmetic detail, but very obvious when working on localisations.
* [tx-robot] updated from transifexJenkins for ownCloud2015-02-0668-174/+204
|
* Don't highly discourageThomas Müller2015-02-051-1/+1
|
* Merge pull request #13907 from owncloud/enhance-sqlite-warningBernhard Posselt2015-02-051-2/+12
|\ | | | | enhance sqlite warning on admin page as well as during setup
| * enhance sqlite warning on admin page as well as during setup - fixes #13906Thomas Müller2015-02-041-2/+12
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-02-052-4/+64
|/
* fix user loadingArthur Schiwon2015-02-041-1/+6
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-02-042-4/+72
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-02-034-12/+18
|
* Merge pull request #13790 from owncloud/fix-subadmin-groupThomas Müller2015-02-023-26/+96
|\ | | | | Fix subadmin listing of group
| * Consistent variable namingLukas Reschke2015-01-301-10/+9
| |
| * Switch to a factory and add unit testsLukas Reschke2015-01-303-25/+70
| |
| * Add unit testsLukas Reschke2015-01-302-11/+22
| |
| * Fix subadmin listing of groupLukas Reschke2015-01-301-6/+21
| | | | | | | | | | | | Without this patch filtering for the "_everyone" (empty) group did not work for subadmins. Fixes itself.
* | [tx-robot] updated from transifexJenkins for ownCloud2015-02-028-26/+30
| |
* | fix trusted domain localizationVolkan Gezer2015-02-011-2/+2
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-02-012-0/+10
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-01-314-0/+76
| |
* | Check whether return is an error case before using itJoas Schilling2015-01-301-8/+12
|/
* [tx-robot] updated from transifexJenkins for ownCloud2015-01-3010-4/+14
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-01-2924-8/+32
|
* [tx-robot] updated from transifexJenkins for ownCloud2015-01-284-0/+74
|
* Merge pull request #13636 from ↵Lukas Reschke2015-01-274-9/+69
|\ | | | | | | | | owncloud/add-warning-if-restore-of-data-is-not-possible Add value if restore of data is possible for a user
| * Add value if restore of data is possible for a userMorris Jobke2015-01-274-9/+69
| | | | | | | | | | | | | | | | | | | | | | * 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
* | [tx-robot] updated from transifexJenkins for ownCloud2015-01-272-0/+6
|/
* Merge pull request #13621 from owncloud/system-config-multisetThomas Müller2015-01-261-10/+11
|\ | | | | Add a method to set/unset multiple config values with one write
| * Use setConfigs() instead of calling setConfig() multiple timesJoas Schilling2015-01-231-10/+11
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-01-254-0/+12
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2015-01-246-0/+16
|/
* [tx-robot] updated from transifexJenkins for ownCloud2015-01-2222-2/+60
|
* Merge pull request #13519 from Sugaroverdose/fix_#13500Thomas Müller2015-01-211-1/+2
|\ | | | | Do not clear fields until request return success in users admin page on user creation
| * do not clear fields until request return successSugaroverdose2015-01-201-1/+2
| |
* | Merge pull request #13559 from owncloud/increase-log-table-marginMorris Jobke2015-01-211-1/+4
|\ \ | | | | | | add margin to log table - fixes #13558
| * | add margin to log table - fixes #13558Morris Jobke2015-01-211-1/+4
| | |