diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-01-05 12:21:57 -0500 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-01-05 12:21:57 -0500 |
commit | 5ea8adc7c7a3659fb95e9111078acf995cea39fb (patch) | |
tree | 34916cbf77ef514dde1d16b4a916a5fabbd28a59 /core | |
parent | f6426cee047e435fbed020105ef4e896b68b1e10 (diff) | |
download | nextcloud-server-5ea8adc7c7a3659fb95e9111078acf995cea39fb.tar.gz nextcloud-server-5ea8adc7c7a3659fb95e9111078acf995cea39fb.zip |
Reformat long line
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/update.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/templates/update.php b/core/templates/update.php index 41da712c6ca..c9f3144f257 100644 --- a/core/templates/update.php +++ b/core/templates/update.php @@ -15,7 +15,11 @@ }); updateEventSource.listen('failure', function(message) { $('<span>').addClass('error').append(message).append('<br />').appendTo($('.update')); - $('<span>').addClass('error bold').append('<br />').append(t('core', 'The update was unsuccessful. Please report this issue to the <a href="https://github.com/owncloud/core/issues" target="_blank">ownCloud community</a>.')).appendTo($('.update')); + $('<span>') + .addClass('error bold') + .append('<br />') + .append(t('core', 'The update was unsuccessful. Please report this issue to the <a href="https://github.com/owncloud/core/issues" target="_blank">ownCloud community</a>.')) + .appendTo($('.update')); }); updateEventSource.listen('done', function(message) { $('<span>').addClass('bold').append('<br />').append(t('core', 'The update was successful. Redirecting you to ownCloud now.')).appendTo($('.update')); |