Skip to content

Commit

Permalink
ncp-web: fix update notification
Browse files Browse the repository at this point in the history
  • Loading branch information
nachoparker committed Apr 2, 2018
1 parent 925c6fe commit ca66dac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion ncp-web/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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>';
Expand Down

0 comments on commit ca66dac

Please sign in to comment.