diff --git a/classes/db/pdo.php b/classes/db/pdo.php
index 126f5150a..3aeebbe67 100644
--- a/classes/db/pdo.php
+++ b/classes/db/pdo.php
@@ -88,6 +88,7 @@ class Db_PDO implements IDb {
$this->query("set client_encoding = 'UTF-8'");
$this->query("set datestyle = 'ISO, european'");
$this->query("set TIME ZONE 0");
+ return;
case "mysql":
$this->query("SET time_zone = '+0:0'");
return;
diff --git a/classes/dlg.php b/classes/dlg.php
index e3931bc3a..eee720ed4 100644
--- a/classes/dlg.php
+++ b/classes/dlg.php
@@ -1,8 +1,9 @@
dbh->escape_string($_REQUEST["pn"]);
-
- $result = $this->dbh->query("SELECT help_text FROM ttrss_prefs
- WHERE pref_name = '$pref_name'");
-
- if ($this->dbh->num_rows($result) > 0) {
- $help_text = $this->dbh->fetch_result($result, 0, "help_text");
- print $help_text;
- } else {
- printf(__("Unknown option: %s"), $pref_name);
- }
- }
-
function changeemail() {
$email = $this->dbh->escape_string($_POST["email"]);
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 38182c7ad..08602c8e5 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -767,7 +767,7 @@ function parse_runtime_info(data) {
}
if (k == "daemon_is_running" && v != 1) {
- notify_error("Update daemon is not running.", true);
+ notify_error("Update daemon is not running.", true);
return;
}
@@ -782,7 +782,7 @@ function parse_runtime_info(data) {
}
if (k == "daemon_stamp_ok" && v != 1) {
- notify_error("Update daemon is not updating feeds.", true);
+ notify_error("Update daemon is not updating feeds.", true);
return;
}