From 415a3b50c9879027d5367696ef2b21200cbd5827 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 7 Jun 2015 18:41:18 +0300 Subject: [PATCH] fix some minor typos and stuff --- classes/db/pdo.php | 1 + classes/dlg.php | 3 ++- classes/feeds.php | 4 +++- classes/pref/prefs.php | 15 --------------- js/tt-rss.js | 4 ++-- 5 files changed, 8 insertions(+), 19 deletions(-) diff --git a/classes/db/pdo.php b/classes/db/pdo.php index 126f5150..3aeebbe6 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 e3931bc3..eee720ed 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 38182c7a..08602c8e 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; } -- 2.39.2