diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-24 10:28:17 -0700 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-24 10:28:17 -0700 |
commit | 3917d18980638e86f5cce9242adeded0ca760260 (patch) | |
tree | 93266e7e5fd9768f1c82200279fb988f597f2c3c /core | |
parent | 54e9d8c306b1a443ab1ba921d4e450c7477d0445 (diff) | |
parent | 3a81c8e3af29a95eabed902d7223d0b92c546754 (diff) | |
download | nextcloud-server-3917d18980638e86f5cce9242adeded0ca760260.tar.gz nextcloud-server-3917d18980638e86f5cce9242adeded0ca760260.zip |
Merge pull request #5528 from frisco82/changeUpadateNotification
Changed update message to be more instructive
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 5 | ||||
-rw-r--r-- | core/templates/update.admin.php (renamed from core/templates/update.php) | 0 | ||||
-rw-r--r-- | core/templates/update.user.php | 8 |
3 files changed, 13 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 20357434c13..868829b1c58 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -445,6 +445,11 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } cursor: default; } +#body-login .update { + text-align: center; + color: #ccc; +} + #body-user .warning, #body-settings .warning { margin-top: 8px; padding: 5px; diff --git a/core/templates/update.php b/core/templates/update.admin.php index a652d5f195a..a652d5f195a 100644 --- a/core/templates/update.php +++ b/core/templates/update.admin.php diff --git a/core/templates/update.user.php b/core/templates/update.user.php new file mode 100644 index 00000000000..bb93f0fad00 --- /dev/null +++ b/core/templates/update.user.php @@ -0,0 +1,8 @@ +<ul> + <li class='update'> + <?php p($l->t('This ownCloud instance is currently being updated, which may take a while.')) ?><br/><br/> + <?php p($l->t('Please reload this page after a short time to continue using ownCloud.')) ?><br/><br/> + <?php p($l->t('Contact your system administrator if this message persists or appeared unexpectedly.')) ?><br/><br/> + <?php p($l->t('Thank you for your patience.')); ?><br/><br/> + </li> +</ul> |