Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2018-04-02 12:15:50 +0300
committernachoparker <nacho@ownyourbits.com>2018-04-02 12:16:01 +0300
commitca66dac120233a7aca94bca9b417903e9f180ff4 (patch)
tree7d8675c8b223aefde472b5b6bca787aa1077d23b
parent925c6fe7e5ef094f61fb701a9aeb3d9618ac55b8 (diff)
ncp-web: fix update notificationv0.53.8
-rw-r--r--changelog.md4
-rw-r--r--ncp-web/index.php2
2 files changed, 4 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md
index ca29219d..4dbc2e06 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,7 @@
-[v0.53.7](https://github.com/nextcloud/nextcloudpi/commit/a574460) (2018-03-29) ncp-web: use random passwords for NC and ncp-web
+[v0.53.8](https://github.com/nextcloud/nextcloudpi/commit/cc733af) (2018-04-02) ncp-web: fix update notification
+
+[v0.53.7](https://github.com/nextcloud/nextcloudpi/commit/d4ca26a) (2018-03-29) ncp-web: use random passwords for NC and ncp-web
[v0.53.6 ](https://github.com/nextcloud/nextcloudpi/commit/151160b) (2018-03-27) samba: dont force NAME_REGEX for username
diff --git a/ncp-web/index.php b/ncp-web/index.php
index ff66862f..aa6ed315 100644
--- a/ncp-web/index.php
+++ b/ncp-web/index.php
@@ -68,7 +68,7 @@
if ($ret == 0) {
echo '<div id="notification">';
echo '<div id="update-notification" class="row type-error closeable">';
- sprintf($l->__("version %s is available"), file_get_contents("/var/run/.ncp-latest-version"));
+ echo "version " . file_get_contents( "/var/run/.ncp-latest-version" ) . " is available";
echo '<a class="action close icon-close" href="#" alt="Dismiss"></a>';
echo '</div>';
echo '</div>';