summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Remove unneeded semicolon and parenthesesMorris Jobke2018-01-269-10/+10
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Use type casting instead of *val() methodMorris Jobke2018-01-261-1/+1
| | | | | | It should be up to 6x faster Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Merge pull request #8063 from nextcloud/inline-valueJoas Schilling2018-01-261-2/+1
|\ | | | | Return value immediately instead of assigning to a one-time variable
| * Return value immediately instead of assigning to a one-time variableMorris Jobke2018-01-261-2/+1
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Merge pull request #8057 from nextcloud/unneeded-implementsRoeland Jago Douma2018-01-261-1/+1
|\ \ | | | | | | Implements are not needed because they are already done by base class
| * | Implements are not needed because they are already done by base classMorris Jobke2018-01-251-1/+1
| |/ | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* / [tx-robot] updated from transifexNextcloud bot2018-01-264-0/+6
|/
* [tx-robot] updated from transifexNextcloud bot2018-01-2516-2/+40
|
* Removed additional and uneccessary request on password reset, to fix ↵Luca Adrian Lindhorst2018-01-241-8/+1
| | | | | | redirection afterwards. Signed-off-by: Luca Adrian Lindhorst <info@lucalindhorst.de>
* Add preview endpoint for the fileidRoeland Jago Douma2018-01-242-15/+76
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2018-01-24112-116/+122
|
* Merge pull request #7918 from nextcloud/properly-log-exceptionsRoeland Jago Douma2018-01-231-0/+4
|\ | | | | Properly log the full exception instead of only the message
| * Properly log the full exception instead of only the messageMorris Jobke2018-01-231-0/+4
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | Merge pull request #7971 from nextcloud/comradekingu-patch-1Morris Jobke2018-01-232-2/+2
|\ \ | | | | | | Spelling: There was an error loading → could not load
| * | There was an error loading → Could not loadAllan Nordhøy2018-01-201-1/+1
| | |
| * | There was an error loading → could not loadAllan Nordhøy2018-01-201-1/+1
| | |
* | | [tx-robot] updated from transifexNextcloud bot2018-01-234-2/+56
| | |
* | | Merge pull request #7354 from nextcloud/refacor-update-page-printblizzz2018-01-222-2/+3
|\ \ \ | |_|/ |/| | Refactor method to check if update is needed
| * | Refactor method to check if update is neededMorris Jobke2017-11-302-2/+3
| | | | | | | | | | | | | | | | | | There was only one call, that actually needed the parameter to be set to true. So this change moved the print of the page to that location and replaces all other occurences with a direct call to the underlying OCP API. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | [tx-robot] updated from transifexNextcloud bot2018-01-222-0/+2
| | |
* | | [tx-robot] updated from transifexNextcloud bot2018-01-21114-114/+144
| | |
* | | Merge pull request #7955 from nextcloud/remove-app-disable-upgradeJulius Härtl2018-01-202-20/+1
|\ \ \ | |_|/ |/| | Remove not needed 3rdparty app disabling during upgrade for PHP 5.x
| * | Remove not needed 3rdparty app disabling during upgrade for PHP 5.xMorris Jobke2018-01-192-20/+1
| | | | | | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | [tx-robot] updated from transifexNextcloud bot2018-01-202-0/+4
|/ /
* | [tx-robot] updated from transifexNextcloud bot2018-01-192-0/+2
| |
* | Merge pull request #7911 from nextcloud/improve-oc_imageJulius Härtl2018-01-181-2/+4
|\ \ | | | | | | Improve OC_Image code to not guess the type of input
| * | Improve OC_Image code to not guess the type of input, but actually request ↵Morris Jobke2018-01-181-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | the specific methods to be called Followup to #7836 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | [tx-robot] updated from transifexNextcloud bot2018-01-1814-0/+16
| | |
* | | Merge pull request #7909 from nextcloud/fix-migration-type-hintsMorris Jobke2018-01-177-29/+26
|\ \ \ | |/ / |/| | Fix the type hints of migrations and correctly inject the wrapped sch…
| * | Fix the type hints of migrations and correctly inject the wrapped schema ↵Joas Schilling2018-01-177-29/+26
| | | | | | | | | | | | | | | | | | into migrations Signed-off-by: Joas Schilling <coding@schilljs.com>
* | | Request->getHeader() should always return a stringMorris Jobke2018-01-173-3/+3
|/ / | | | | | | | | | | | | | | PHPDoc (of the public API) says that this method returns string but it also returns null, which is not allowed in some method calls. This fixes that behaviour and returns an empty string and fixes all code paths that explicitly checked for null to be still compliant. Found while enabling the strict_typing for lib/private for the PHP7+ migration. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | [tx-robot] updated from transifexNextcloud bot2018-01-1718-0/+18
| |
* | Merge pull request #7848 from nextcloud/fix_7701Morris Jobke2018-01-162-4/+18
|\ \ | | | | | | Show message when connection is throttled
| * | Fix wordingRoeland Jago Douma2018-01-151-1/+1
| | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | Display message when connection is throttled on logi pageRoeland Jago Douma2018-01-152-4/+18
| | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* | | [tx-robot] updated from transifexNextcloud bot2018-01-1664-126/+132
|/ /
* | Merge pull request #7835 from nextcloud/fix-empty-overwrite-url-in-setupMorris Jobke2018-01-151-1/+1
|\ \ | | | | | | Fix case when overwrite URL is empty during setup
| * | Fix case when overwrite URL is empty during setupMorris Jobke2018-01-151-1/+1
| | | | | | | | | | | | | | | | | | Found while testing strict typing for PHP 7+. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* | | Merge pull request #7854 from nextcloud/comradekingu-patch-1Morris Jobke2018-01-152-3/+3
|\ \ \ | | | | | | | | Spelling: FreeType
| * | | Spelling: FreeTypeAllan Nordhøy2018-01-141-2/+2
| | | |
| * | | Spelling: FreeTypeAllan Nordhøy2018-01-141-1/+1
| |/ /
* | | Merge pull request #7859 from nextcloud/master-7806Joas Schilling2018-01-151-1/+12
|\ \ \ | | | | | | | | Fix bug with proxies
| * | | Fix bug with proxiesMario Danic2018-01-151-1/+12
| |/ / | | | | | | | | | Signed-off-by: Mario Danic <mario@lovelyhq.com>
* / / [tx-robot] updated from transifexNextcloud bot2018-01-154-0/+6
|/ /
* | [tx-robot] updated from transifexNextcloud bot2018-01-12114-114/+114
| |
* | Merge pull request #7709 from ↵Morris Jobke2018-01-113-8/+14
|\ \ | | | | | | | | | | | | nextcloud/fix-password-displayed-as-username-in-password-manager Fix password displayed as username in Firefox password manager dialog
| * | Bump strengthify to 0.5.3Roeland Jago Douma2018-01-102-7/+13
| | | | | | | | | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
| * | Fix password displayed as username in Firefox password manager dialogDaniel Calviño Sánchez2018-01-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When finishing the setup of Nextcloud through the WebUI (setting admin user and database) Firefox offers to save the username and password. However, the password was shown in both the username and password fields of the Firefox password manager dialog. The problem was that the password input element (in the HTML form) is cloned in a text input element, which is used to show the password in plain text when clicking on the "Show password" button. As it was a text input immediately followed by a password input Firefox seemed to assume that it had to be the username and ignored the real username field, no matter the value set for the "autocomplete" attribute. Now the cloned text input is added after the password input, so Firefox no longer thinks that the cloned text input is the username field and the password manager dialog shows the proper username instead. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* | | Merge pull request #7650 from rpirritano/masterMorris Jobke2018-01-113-10/+9
|\ \ \ | | | | | | | | made small changes to login screen
| * | | made small changes to login screenRobert Pirritano2018-01-113-10/+9
| | | | | | | | | | | | | | | | | | | | | | | | added height back 70px back to footer and removed .htaccess file Signed-off-by: Robert R Pirritano <rpirritano@gmail.com>