]> source.dussan.org Git - nextcloud-server.git/log
nextcloud-server.git
10 years agoMerge pull request #8779 from owncloud/sel-webdav-onclick
Vincent Petry [Fri, 30 May 2014 15:18:54 +0000 (17:18 +0200)]
Merge pull request #8779 from owncloud/sel-webdav-onclick

select webdav address on click

10 years agoMerge pull request #8793 from owncloud/name-email-enter-prevent
Volkan Gezer [Fri, 30 May 2014 15:03:32 +0000 (17:03 +0200)]
Merge pull request #8793 from owncloud/name-email-enter-prevent

prevent pageload if pressed enter on name email change. fixes #6179

10 years agoMerge pull request #8663 from owncloud/files-dndissue
Lukas Reschke [Fri, 30 May 2014 14:28:20 +0000 (16:28 +0200)]
Merge pull request #8663 from owncloud/files-dndissue

Fixed drag and drop from external files, added tests

10 years agoMerge pull request #8781 from owncloud/add-a-warning-to-the-sample
Thomas Müller [Fri, 30 May 2014 14:17:19 +0000 (16:17 +0200)]
Merge pull request #8781 from owncloud/add-a-warning-to-the-sample

Add a warning to the configuration file

10 years agoMerge pull request #5365 from owncloud/filesize-improvements-32bit
Thomas Müller [Fri, 30 May 2014 14:13:48 +0000 (16:13 +0200)]
Merge pull request #5365 from owncloud/filesize-improvements-32bit

Add LargeFileHelper / Add CURL filesize workaround / Fix some 32-bit filesize issues

10 years agofix wording
Volkan Gezer [Fri, 30 May 2014 14:00:57 +0000 (16:00 +0200)]
fix wording

10 years agoselect webdav address on click
Volkan Gezer [Thu, 29 May 2014 13:28:14 +0000 (15:28 +0200)]
select webdav address on click

10 years agoprevent pageload if pressed enter on name email change
Volkan Gezer [Fri, 30 May 2014 13:12:39 +0000 (15:12 +0200)]
prevent pageload if pressed enter on name email change

10 years agoMerge pull request #8778 from owncloud/storage-instanceof
icewind1991 [Fri, 30 May 2014 12:58:59 +0000 (14:58 +0200)]
Merge pull request #8778 from owncloud/storage-instanceof

Add storage->instanceOfStorage() to handle instanceof with storage wrappers

10 years agoMerge pull request #8417 from owncloud/share-overview
Lukas Reschke [Fri, 30 May 2014 11:42:24 +0000 (13:42 +0200)]
Merge pull request #8417 from owncloud/share-overview

Sharing overview page

10 years agoFixed warning when file_target is not set
Vincent Petry [Fri, 30 May 2014 10:35:04 +0000 (12:35 +0200)]
Fixed warning when file_target is not set

In some cases (like in the unit tests) "file_target" is not set yet
whenever the target file system hasn't been mounted yet.

10 years agoRemoved "Share with" column
Vincent Petry [Wed, 28 May 2014 14:53:42 +0000 (16:53 +0200)]
Removed "Share with" column

10 years agoFix fileList fallback in OC.Share for outside files app
Vincent Petry [Wed, 28 May 2014 14:34:00 +0000 (16:34 +0200)]
Fix fileList fallback in OC.Share for outside files app

OC.Share can be used in non-files apps, so the fileList callback needs
to support that as well.

10 years agoAdded owner display name in action
Vincent Petry [Mon, 26 May 2014 10:59:44 +0000 (12:59 +0200)]
Added owner display name in action

10 years agoSharing overview fixes and unit tests
Vincent Petry [Wed, 21 May 2014 10:54:34 +0000 (12:54 +0200)]
Sharing overview fixes and unit tests

- Fixed renaming and fileActionsReady event
- Added unit tests for shares list
- Fixed public page with defer
- Fixed file actions in sharing overview
- Fixed sharing counterpart list (10 entries max)
- Fixed file path attribute to be used in download action
- Fix sharing list headers
- OC.Share icons now operate on fileList instance
- Fix OC.Share.updateIcon when more than one list in DOM

10 years agoFix table header colors
Vincent Petry [Mon, 26 May 2014 09:52:42 +0000 (11:52 +0200)]
Fix table header colors

Table headers should be 999 even when using links (introduced by the
sorting feature)

When selecting with checkboxes, they must appear black.

10 years agoFix IE8 issue when icon is not defined
Vincent Petry [Fri, 23 May 2014 14:14:02 +0000 (16:14 +0200)]
Fix IE8 issue when icon is not defined

Sometimes no icon file is passed to replaceSVGIcon(), it showed an error
in IE8 and broke the code flow.

This fix adds a check whether the file name is set.

10 years agoMimetype for sharing overview
Vincent Petry [Tue, 20 May 2014 11:11:06 +0000 (13:11 +0200)]
Mimetype for sharing overview

10 years agoDistinguish legacy file actions from regular file actions
Vincent Petry [Tue, 20 May 2014 14:01:34 +0000 (16:01 +0200)]
Distinguish legacy file actions from regular file actions

Legacy file actions are registered by legacy apps through
window.FileActions.register(). These actions can only be used by the
main file list ("all files") because legacy apps can only deal with a
single list / container.

New file actions of compatible apps must be registered through
OCA.Files.fileActions. These will be used for other lists like the
sharing overview.

Fixed versions and sharing actions to use OCA.Files.fileActions, which
makes them available in the sharing overview list.

10 years agoSmall fixes to sharing overview
Vincent Petry [Tue, 20 May 2014 10:00:42 +0000 (12:00 +0200)]
Small fixes to sharing overview

- Removed file size from file summary in sharing overview
- Fixed document title
- Fixed empty content text for shared overview

10 years agoAdded "dir" in file actions handler context and fixed versions
Vincent Petry [Tue, 20 May 2014 09:44:18 +0000 (11:44 +0200)]
Added "dir" in file actions handler context and fixed versions

Added "dir" in file actions handler context so that handlers can know
what the path of the file was without having to look it up from the file
list.

Fixed versions app to use the context.dir instead of the old $('#dir')
element. This makes the versions popup work in the sharing overview.

10 years agoFixed navigation order
Vincent Petry [Tue, 20 May 2014 09:06:09 +0000 (11:06 +0200)]
Fixed navigation order

10 years agoAdd unit tests for fileActionsReady
Vincent Petry [Mon, 19 May 2014 16:48:48 +0000 (18:48 +0200)]
Add unit tests for fileActionsReady

10 years agoAdded unit test for file action context argument
Vincent Petry [Mon, 19 May 2014 16:47:14 +0000 (18:47 +0200)]
Added unit test for file action context argument

10 years agoRemoved selection checkboxes
Vincent Petry [Mon, 19 May 2014 16:38:41 +0000 (18:38 +0200)]
Removed selection checkboxes

10 years agoFixed sharing permissions
Vincent Petry [Mon, 19 May 2014 16:33:43 +0000 (18:33 +0200)]
Fixed sharing permissions

10 years agoFixed file actions for sharing views
Vincent Petry [Mon, 19 May 2014 13:20:44 +0000 (15:20 +0200)]
Fixed file actions for sharing views

FileActions can now be clone to be use for separate file list views
without having the side-effect of affecting the main file list view.

Added "Open" action in sharing overview file lists to redirect to the
regular file list when clicking on a folder.

10 years agoImproved FileActions with context
Vincent Petry [Mon, 19 May 2014 11:18:44 +0000 (13:18 +0200)]
Improved FileActions with context

A context hash is now passed to file action handlers which makes it
possible to have file list specific file actions.

10 years agoGroup shares by type
Vincent Petry [Thu, 15 May 2014 17:51:15 +0000 (19:51 +0200)]
Group shares by type

10 years agoAdded sharing overview page (WIP)
Vincent Petry [Wed, 30 Apr 2014 15:42:35 +0000 (17:42 +0200)]
Added sharing overview page (WIP)

- added sharing overview entries in the sidebar
- use OCS Share API to get the list of files

10 years agoextend OCS Share API to allow the user to ask for files shared with him
Bjoern Schiessle [Mon, 5 May 2014 13:02:49 +0000 (15:02 +0200)]
extend OCS Share API to allow the user to ask for files shared with him

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Fri, 30 May 2014 05:55:11 +0000 (01:55 -0400)]
[tx-robot] updated from transifex

10 years agoMerge pull request #8700 from owncloud/design-smallfixes
Lukas Reschke [Thu, 29 May 2014 19:54:15 +0000 (21:54 +0200)]
Merge pull request #8700 from owncloud/design-smallfixes

Design detail fixes

10 years agoMerge pull request #8759 from owncloud/fix-phpunit
Lukas Reschke [Thu, 29 May 2014 19:35:47 +0000 (21:35 +0200)]
Merge pull request #8759 from owncloud/fix-phpunit

fix 8757, get rid of service locator antipattern

10 years agoMerge pull request #8773 from owncloud/l10n-tipsy-delete
Lukas Reschke [Thu, 29 May 2014 19:30:50 +0000 (21:30 +0200)]
Merge pull request #8773 from owncloud/l10n-tipsy-delete

show delete hint text on hovering trash

10 years agoMerge pull request #8727 from owncloud/upgrade-overview
Lukas Reschke [Thu, 29 May 2014 19:28:47 +0000 (21:28 +0200)]
Merge pull request #8727 from owncloud/upgrade-overview

Added update overview page

10 years agoMerge pull request #8771 from owncloud/enc_get_mount_from_mountmanager
Robin McCorkell [Thu, 29 May 2014 16:52:28 +0000 (17:52 +0100)]
Merge pull request #8771 from owncloud/enc_get_mount_from_mountmanager

get mount point from mount manager

10 years agoMerge pull request #8780 from owncloud/remove-deprecated-functions
Bernhard Posselt [Thu, 29 May 2014 16:45:43 +0000 (18:45 +0200)]
Merge pull request #8780 from owncloud/remove-deprecated-functions

Remove deprecated functions

10 years agoAdd a warning to the configuration file
Lukas Reschke [Thu, 29 May 2014 15:43:59 +0000 (17:43 +0200)]
Add a warning to the configuration file

Some people believe that they should copy the sample config to the "real" config. I noticed this several times in IRC and on the bugtracker.

I guess this warning should be enough to avoid this in the future.

10 years agoRemove deprecated functions
Lukas Reschke [Thu, 29 May 2014 15:01:30 +0000 (17:01 +0200)]
Remove deprecated functions

This functions have been deprecated since Oct 2012 (ownCloud 5), let's finally remove them for ownCloud 7.

Ref https://github.com/owncloud/core/commit/c4b8bb10411a4d601b7f4c8758980005f14850ab

10 years agoTypo: getFileSizeViaDOM -> getFileSizeViaCOM
Andreas Fischer [Sun, 16 Mar 2014 20:21:17 +0000 (21:21 +0100)]
Typo: getFileSizeViaDOM -> getFileSizeViaCOM

10 years agoDocument exceptions thrown by \OC\LargeFileHelper.
Andreas Fischer [Sun, 16 Mar 2014 19:05:06 +0000 (20:05 +0100)]
Document exceptions thrown by \OC\LargeFileHelper.

10 years agoUse "file size" instead of "filesize", then also apply camel case.
Andreas Fischer [Sun, 16 Mar 2014 18:54:05 +0000 (19:54 +0100)]
Use "file size" instead of "filesize", then also apply camel case.

10 years agoIncrease file size limit from 2 GiB to 4 GiB when workarounds are unavailable.
Andreas Fischer [Tue, 18 Feb 2014 11:57:44 +0000 (12:57 +0100)]
Increase file size limit from 2 GiB to 4 GiB when workarounds are unavailable.

10 years agoCast '{DAV:}getcontentlength' to number instead of int.
Andreas Fischer [Sun, 16 Feb 2014 13:42:59 +0000 (14:42 +0100)]
Cast '{DAV:}getcontentlength' to number instead of int.

10 years agoCast to number instead of integer in OC\Files\Cache\HomeCache
Andreas Fischer [Sun, 16 Feb 2014 00:03:39 +0000 (01:03 +0100)]
Cast to number instead of integer in OC\Files\Cache\HomeCache

10 years agoCast to number instead of integer in OC\Files\Cache\Cache
Andreas Fischer [Sat, 15 Feb 2014 23:50:03 +0000 (00:50 +0100)]
Cast to number instead of integer in OC\Files\Cache\Cache

10 years agoAdd LargeFileHelper::__construct() verifying that our assumptions hold.
Andreas Fischer [Sat, 15 Feb 2014 22:41:58 +0000 (23:41 +0100)]
Add LargeFileHelper::__construct() verifying that our assumptions hold.

10 years agoAdd helper method for turning int|float into base-10 unsigned integer string.
Andreas Fischer [Sat, 15 Feb 2014 22:21:23 +0000 (23:21 +0100)]
Add helper method for turning int|float into base-10 unsigned integer string.

10 years agoRename: LargeFileHelper -> LargeFileHelperGetFilesize
Andreas Fischer [Sat, 15 Feb 2014 22:06:46 +0000 (23:06 +0100)]
Rename: LargeFileHelper -> LargeFileHelperGetFilesize

10 years agoOnly call $this->filesize() for files.
Andreas Fischer [Wed, 12 Feb 2014 12:58:07 +0000 (13:58 +0100)]
Only call $this->filesize() for files.

10 years agoWindows exec() implementation.
Andreas Fischer [Sun, 9 Feb 2014 15:16:01 +0000 (16:16 +0100)]
Windows exec() implementation.

10 years agoOutput validation for exec() method.
Andreas Fischer [Sun, 9 Feb 2014 14:56:26 +0000 (15:56 +0100)]
Output validation for exec() method.

10 years agoUnit Tests for LargeFileHelper.
Andreas Fischer [Sun, 9 Feb 2014 14:53:58 +0000 (15:53 +0100)]
Unit Tests for LargeFileHelper.

10 years agoRefactor Large File handling code.
Andreas Fischer [Sun, 9 Feb 2014 00:25:33 +0000 (01:25 +0100)]
Refactor Large File handling code.

10 years agoCast to numeric instead of float, i.e. use an integer if possible.
Andreas Fischer [Tue, 7 Jan 2014 12:50:57 +0000 (13:50 +0100)]
Cast to numeric instead of float, i.e. use an integer if possible.

10 years agoUse CURL to get filesize on 32bit systems.
Andreas Fischer [Wed, 16 Oct 2013 13:37:58 +0000 (15:37 +0200)]
Use CURL to get filesize on 32bit systems.

10 years agoPass any methods custom to specific storage implementations to the wrapped storage
Robin Appelman [Thu, 29 May 2014 14:13:05 +0000 (16:13 +0200)]
Pass any methods custom to specific storage implementations to the wrapped storage

10 years agoMerge pull request #8554 from owncloud/add_resetadminpass_command
Andreas Fischer [Thu, 29 May 2014 12:43:27 +0000 (14:43 +0200)]
Merge pull request #8554 from owncloud/add_resetadminpass_command

Add a resetadminpass command to console

* owncloud/add_resetadminpass_command:
  Move resetpassword into user: command space.
  Document type of user project.
  Receive \OC\User\Manager as a constructor dependency.
  Use userManager, color output, return 1 on error
  Add doc, check return-value, fix spacing, require interactive
  Back to the future
  Make ResetAdminPass to ResetPassword
  Add a resetadminpass command to console - fix #8248

10 years agoFix storage wrapper being called with null
Robin Appelman [Thu, 29 May 2014 12:15:48 +0000 (14:15 +0200)]
Fix storage wrapper being called with null

10 years agoUse instanceOfStorage instead of instanceof
Robin Appelman [Thu, 29 May 2014 11:52:58 +0000 (13:52 +0200)]
Use instanceOfStorage instead of instanceof

10 years agoAdd $storage->instanceOfStorage to handle instanceof for storage wrappers
Robin Appelman [Thu, 29 May 2014 11:45:50 +0000 (13:45 +0200)]
Add $storage->instanceOfStorage to handle instanceof for storage wrappers

10 years agoMerge pull request #3908 from owncloud/storage-folder-copy-rename
icewind1991 [Thu, 29 May 2014 11:29:24 +0000 (13:29 +0200)]
Merge pull request #3908 from owncloud/storage-folder-copy-rename

Recursive copy and remove for local storage backends

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Thu, 29 May 2014 05:54:40 +0000 (01:54 -0400)]
[tx-robot] updated from transifex

10 years agoMerge pull request #8748 from owncloud/cli_maintenance_mode
Andreas Fischer [Thu, 29 May 2014 01:45:49 +0000 (03:45 +0200)]
Merge pull request #8748 from owncloud/cli_maintenance_mode

Add ability to enable/disable maintenance mode from cli.

* owncloud/cli_maintenance_mode:
  Use OC\Config instead of OC_Config
  Changed class name to mode
  Add ability to enable/disable maintenance mode from cli.

10 years agoMerge pull request #8547 from owncloud/path-length-master
Thomas Müller [Wed, 28 May 2014 22:08:29 +0000 (00:08 +0200)]
Merge pull request #8547 from owncloud/path-length-master

Handling long paths properly in \OC\Files\View

10 years agoMerge remote-tracking branch 'owncloud/master' into add_resetadminpass_command
Andreas Fischer [Wed, 28 May 2014 20:57:33 +0000 (22:57 +0200)]
Merge remote-tracking branch 'owncloud/master' into add_resetadminpass_command

* owncloud/master: (238 commits)
  Change visibility of scanner internals
  [tx-robot] updated from transifex
  remove legacy OC_Filesystem being used in a hook callback
  add title property to share dialog
  forgotten infobox messages translations
  reverts 188c543 and translates only mail
  fix warning text and margin
  Adjust core apps to use "requiremin" instead of "require"
  Added requiremin/requiremax fields for apps
  [tx-robot] updated from transifex
  unwrapped strings fix
  allow resharing of files with only share permissions
  don't lose file size during rename
  drop superflous statement in phpdoc
  add preRememberedLogin hook and document this and postRememberedLogin in class descripttion. Also fixes documentation of postLogin hook
  [tx-robot] updated from transifex
  fix grammar
  make user_ldap fully translatable
  [tx-robot] updated from transifex
  fix typo
  ...

Conflicts:
core/register_command.php

10 years agoMove resetpassword into user: command space.
Andreas Fischer [Wed, 28 May 2014 20:53:44 +0000 (22:53 +0200)]
Move resetpassword into user: command space.

10 years agoDocument type of user project.
Andreas Fischer [Wed, 28 May 2014 20:48:35 +0000 (22:48 +0200)]
Document type of user project.

10 years agoMerge pull request #8754 from owncloud/3rdparty-upgraded-phpmailer
Lukas Reschke [Wed, 28 May 2014 20:42:45 +0000 (22:42 +0200)]
Merge pull request #8754 from owncloud/3rdparty-upgraded-phpmailer

upgraded phpmailer into v5.2.8 via composer

10 years agoReceive \OC\User\Manager as a constructor dependency.
Andreas Fischer [Wed, 28 May 2014 20:42:33 +0000 (22:42 +0200)]
Receive \OC\User\Manager as a constructor dependency.

10 years agoUse OC\Config instead of OC_Config
scolebrook [Wed, 28 May 2014 20:26:13 +0000 (16:26 -0400)]
Use OC\Config instead of OC_Config

10 years agoshow delete hint text on hovering trash
Volkan Gezer [Wed, 28 May 2014 18:27:28 +0000 (20:27 +0200)]
show delete hint text on hovering trash

10 years agoMerge pull request #8681 from owncloud/logintimestamp
Lukas Reschke [Wed, 28 May 2014 17:06:47 +0000 (19:06 +0200)]
Merge pull request #8681 from owncloud/logintimestamp

Record login timestamp per user. Required for new user managament.

10 years agoRemove code duplication
Robin Appelman [Fri, 23 May 2014 10:46:12 +0000 (12:46 +0200)]
Remove code duplication

10 years agoFix LocalStorage->unlink to work on folder as expected
Robin Appelman [Tue, 6 May 2014 13:54:48 +0000 (15:54 +0200)]
Fix LocalStorage->unlink to work on folder as expected

10 years agore-use rescursive copy from common storage
Robin Appelman [Wed, 10 Jul 2013 19:39:58 +0000 (21:39 +0200)]
re-use rescursive copy from common storage

10 years agoremove unneeded check
Robin Appelman [Thu, 4 Jul 2013 19:17:52 +0000 (21:17 +0200)]
remove unneeded check

10 years agouse \OC\Files\Filesystem::isIgnoredDir
Robin Appelman [Mon, 1 Jul 2013 17:12:48 +0000 (19:12 +0200)]
use \OC\Files\Filesystem::isIgnoredDir

10 years agofix illegal usage of unlink in test case
Robin Appelman [Mon, 1 Jul 2013 16:11:33 +0000 (18:11 +0200)]
fix illegal usage of unlink in test case

10 years agofix recursive copy and rename for common storage backend
Robin Appelman [Mon, 1 Jul 2013 16:11:05 +0000 (18:11 +0200)]
fix recursive copy and rename for common storage backend

10 years agofix recursive copy and rename for mapped local storage backend
Robin Appelman [Mon, 1 Jul 2013 16:02:56 +0000 (18:02 +0200)]
fix recursive copy and rename for mapped local storage backend

10 years agoadd recursive copy to local storage backend
Robin Appelman [Mon, 1 Jul 2013 15:57:40 +0000 (17:57 +0200)]
add recursive copy to local storage backend

10 years agofix recursive rename for local storage backend
Robin Appelman [Mon, 1 Jul 2013 15:45:01 +0000 (17:45 +0200)]
fix recursive rename for local storage backend

10 years agoremove unneeded delTree
Robin Appelman [Mon, 1 Jul 2013 15:41:49 +0000 (17:41 +0200)]
remove unneeded delTree

10 years agoaditional test cases for copy and rename
Robin Appelman [Mon, 1 Jul 2013 15:40:19 +0000 (17:40 +0200)]
aditional test cases for copy and rename

10 years agoget mount point from mount manager
Bjoern Schiessle [Wed, 28 May 2014 15:18:41 +0000 (17:18 +0200)]
get mount point from mount manager

10 years agoMerge pull request #8768 from owncloud/scanner_visibility
icewind1991 [Wed, 28 May 2014 13:59:57 +0000 (15:59 +0200)]
Merge pull request #8768 from owncloud/scanner_visibility

Change visibility of scanner internals

10 years agoChanged class name to mode
scolebrook [Wed, 28 May 2014 13:41:34 +0000 (09:41 -0400)]
Changed class name to mode

10 years ago# This is a combination of 2 commits.
Thomas Müller [Thu, 8 May 2014 13:19:54 +0000 (15:19 +0200)]
# This is a combination of 2 commits.
# The first commit's message is:

adding tests for long paths
increment path field in database up to 4000 (maximum for Oracle - otherwise we could use php's 4096)
increment version to trigger database migration
adding unit test for too long path

# This is the 2nd commit message:

fix too long path

10 years agofix assertions
Bernhard Posselt [Wed, 28 May 2014 13:23:57 +0000 (15:23 +0200)]
fix assertions

10 years agoUpdate 3rdparty submodule after merge
Thomas Müller [Wed, 28 May 2014 13:16:14 +0000 (15:16 +0200)]
Update 3rdparty submodule after merge

10 years agoChange visibility of scanner internals
ringmaster [Wed, 28 May 2014 11:59:38 +0000 (07:59 -0400)]
Change visibility of scanner internals

so that descendant classes can access them.

10 years agoupdating unit test expectations
Thomas Müller [Wed, 28 May 2014 11:47:27 +0000 (13:47 +0200)]
updating unit test expectations

10 years agoFix double "saved" message when changing email settings
Joas Schilling [Wed, 28 May 2014 09:50:55 +0000 (11:50 +0200)]
Fix double "saved" message when changing email settings

10 years agoFixed DOM elements, styling and code style issues
Vincent Petry [Wed, 28 May 2014 09:29:22 +0000 (11:29 +0200)]
Fixed DOM elements, styling and code style issues

- Reduced number of DOM elements
- Also added mention of "config" backup.

10 years agoMerge pull request #8755 from owncloud/fix-8737-master
Vincent Petry [Wed, 28 May 2014 08:57:54 +0000 (10:57 +0200)]
Merge pull request #8755 from owncloud/fix-8737-master

remove legacy OC_Filesystem being used in a hook callback

10 years agoMerge pull request #8750 from owncloud/l10n-add-title-property
Volkan Gezer [Wed, 28 May 2014 08:52:00 +0000 (10:52 +0200)]
Merge pull request #8750 from owncloud/l10n-add-title-property

add title property to share dialog will close #8638

10 years agoMerge pull request #8732 from owncloud/fix-warning-text
Jan-Christoph Borchardt [Wed, 28 May 2014 08:43:28 +0000 (10:43 +0200)]
Merge pull request #8732 from owncloud/fix-warning-text

fix warning text and margin. fixes #8715

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Wed, 28 May 2014 05:56:09 +0000 (01:56 -0400)]
[tx-robot] updated from transifex