";
+
+ if ($param == 1) {
+ print _("Update daemon is enabled in configuration, but daemon
+ process is not running, which prevents all feeds from updating. Please
+ start the daemon process or contact instance owner.");
+ }
+
+ print "
";
+
+ print "
";
+
+ print "";
+
+ print "
";
+
+ }
+
if ($id == "quickAddFeed") {
print "
Subscribe to feed
";
diff --git a/tt-rss.css b/tt-rss.css
index ac44a1b4b..5cf0ce7f5 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -242,6 +242,11 @@ input.editbox {
color : black;
}
+.notifyError span:hover {
+ color : red;
+ cursor : pointer;
+}
+
#dispSwitch {
font-size : x-small;
text-align : right;
diff --git a/tt-rss.js b/tt-rss.js
index 0e4c15485..0e0886b85 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -539,7 +539,11 @@ function parse_runtime_info(elem) {
debug("RI: " + k + " => " + v);
- var w = document.getElementById("noDaemonWarning");
+ if (k == "daemon_is_running" && v != 1) {
+ notify("Warning: Update daemon is not runing.", true, true);
+ }
+
+/* var w = document.getElementById("noDaemonWarning");
if (w) {
if (k == "daemon_is_running" && v != 1) {
@@ -547,7 +551,7 @@ function parse_runtime_info(elem) {
} else {
w.style.display = "none";
}
- }
+ } */
param = param.nextSibling;
}
}
diff --git a/tt-rss.php b/tt-rss.php
index d68469861..57a750c59 100644
--- a/tt-rss.php
+++ b/tt-rss.php
@@ -97,12 +97,6 @@ if (document.addEventListener) {
window.onload = init;
-
- Warning: Update daemon is enabled in configuration, but daemon
- process is not running, which prevents all feeds from updating. Please
- start the daemon process or contact instance owner.") ?>
-