php: remove trailing whitespaces
This commit is contained in:
+4
-4
@@ -126,7 +126,7 @@ class Article extends Handler_Protected {
|
||||
if (filter_var($url, FILTER_VALIDATE_URL) === FALSE) return false;
|
||||
|
||||
$pdo = Db::pdo();
|
||||
|
||||
|
||||
$pdo->beginTransaction();
|
||||
|
||||
// only check for our user data here, others might have shared this with different content etc
|
||||
@@ -309,7 +309,7 @@ class Article extends Handler_Protected {
|
||||
|
||||
if ($tag != '') {
|
||||
$sth = $this->pdo->prepare("INSERT INTO ttrss_tags
|
||||
(post_int_id, owner_uid, tag_name)
|
||||
(post_int_id, owner_uid, tag_name)
|
||||
VALUES (?, ?, ?)");
|
||||
|
||||
$sth->execute([$int_id, $_SESSION['uid'], $tag]);
|
||||
@@ -642,7 +642,7 @@ class Article extends Handler_Protected {
|
||||
stylesheet_tag("css/default.css")."
|
||||
<link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
|
||||
<link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">";
|
||||
|
||||
|
||||
$rv['content'] .= "<meta property=\"og:title\" content=\"".htmlspecialchars($line["title"])."\"/>\n";
|
||||
$rv['content'] .= "<meta property=\"og:site_name\" content=\"".htmlspecialchars($line["feed_title"])."\"/>\n";
|
||||
$rv['content'] .= "<meta property=\"og:description\" content=\"".
|
||||
@@ -829,7 +829,7 @@ class Article extends Handler_Protected {
|
||||
$pdo = Db::pdo();
|
||||
|
||||
$sth = $pdo->prepare("SELECT DISTINCT tag_name,
|
||||
owner_uid as owner FROM ttrss_tags
|
||||
owner_uid as owner FROM ttrss_tags
|
||||
WHERE post_int_id = (SELECT int_id FROM ttrss_user_entries WHERE
|
||||
ref_id = ? AND owner_uid = ? LIMIT 1) ORDER BY tag_name");
|
||||
|
||||
|
||||
+2
-2
@@ -130,7 +130,7 @@ class CCache {
|
||||
|
||||
if (!$pcat_fast) {
|
||||
$sth = $pdo->prepare("SELECT id FROM ttrss_feeds
|
||||
WHERE owner_uid = :uid AND
|
||||
WHERE owner_uid = :uid AND
|
||||
(cat_id = :cat OR (:cat = 0 AND cat_id IS NULL))");
|
||||
$sth->execute([":uid" => $owner_uid, ":cat" => $feed_id]);
|
||||
|
||||
@@ -141,7 +141,7 @@ class CCache {
|
||||
|
||||
$sth = $pdo->prepare("SELECT SUM(value) AS sv
|
||||
FROM ttrss_counters_cache, ttrss_feeds
|
||||
WHERE id = feed_id AND
|
||||
WHERE id = feed_id AND
|
||||
(cat_id = :cat OR (:cat = 0 AND cat_id IS NULL)) AND
|
||||
ttrss_counters_cache.owner_uid = :uid AND
|
||||
ttrss_feeds.owner_uid = :uid");
|
||||
|
||||
+3
-3
@@ -173,7 +173,7 @@ class Feeds extends Handler_Protected {
|
||||
$method_split = explode(":", $method);
|
||||
|
||||
if ($method == "ForceUpdate" && $feed > 0 && is_numeric($feed)) {
|
||||
$sth = $this->pdo->prepare("UPDATE ttrss_feeds
|
||||
$sth = $this->pdo->prepare("UPDATE ttrss_feeds
|
||||
SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
|
||||
WHERE id = ?");
|
||||
$sth->execute([$feed]);
|
||||
@@ -527,7 +527,7 @@ class Feeds extends Handler_Protected {
|
||||
$tmp_content .= "<span id=\"RTITLE-$id\"
|
||||
onclick=\"return cdmClicked(event, $id);\"
|
||||
data-article-id=\"$id\"
|
||||
class=\"titleWrap hlMenuAttach $hlc_suffix\">
|
||||
class=\"titleWrap hlMenuAttach $hlc_suffix\">
|
||||
<a class=\"title $hlc_suffix\"
|
||||
title=\"".htmlspecialchars($line["title"])."\"
|
||||
target=\"_blank\" rel=\"noopener noreferrer\" href=\"".
|
||||
@@ -1471,7 +1471,7 @@ class Feeds extends Handler_Protected {
|
||||
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_SUBSCRIBE_FEED) as $plugin) {
|
||||
$contents = $plugin->hook_subscribe_feed($contents, $url, $auth_login, $auth_pass);
|
||||
}
|
||||
|
||||
|
||||
if (!$contents) {
|
||||
if (preg_match("/cloudflare\.com/", $fetch_last_error_content)) {
|
||||
$fetch_last_error .= " (feed behind Cloudflare)";
|
||||
|
||||
+2
-2
@@ -42,7 +42,7 @@ class Labels
|
||||
|
||||
$pdo = Db::pdo();
|
||||
|
||||
$sth = $pdo->prepare("SELECT id, fg_color, bg_color, caption FROM ttrss_labels2
|
||||
$sth = $pdo->prepare("SELECT id, fg_color, bg_color, caption FROM ttrss_labels2
|
||||
WHERE owner_uid = ? ORDER BY caption");
|
||||
$sth->execute([$owner_uid]);
|
||||
|
||||
@@ -190,7 +190,7 @@ class Labels
|
||||
$sth->execute([$caption, $owner_uid]);
|
||||
|
||||
if (!$sth->fetch()) {
|
||||
$sth = $pdo->prepare("INSERT INTO ttrss_labels2
|
||||
$sth = $pdo->prepare("INSERT INTO ttrss_labels2
|
||||
(caption,owner_uid,fg_color,bg_color) VALUES (?, ?, ?, ?)");
|
||||
|
||||
$sth->execute([$caption, $owner_uid, $fg_color, $bg_color]);
|
||||
|
||||
+9
-9
@@ -75,7 +75,7 @@ class Opml extends Handler_Protected {
|
||||
|
||||
$sth = $this->pdo->prepare("SELECT id,title
|
||||
FROM ttrss_feed_categories WHERE
|
||||
(parent_cat = :cat OR (:cat = 0 AND parent_cat IS NULL)) AND
|
||||
(parent_cat = :cat OR (:cat = 0 AND parent_cat IS NULL)) AND
|
||||
owner_uid = :uid ORDER BY order_id, title");
|
||||
|
||||
$sth->execute([':cat' => $cat_id, ':uid' => $owner_uid]);
|
||||
@@ -85,7 +85,7 @@ class Opml extends Handler_Protected {
|
||||
}
|
||||
|
||||
$fsth = $this->pdo->prepare("select title, feed_url, site_url
|
||||
FROM ttrss_feeds WHERE
|
||||
FROM ttrss_feeds WHERE
|
||||
(cat_id = :cat OR (:cat = 0 AND cat_id IS NULL)) AND owner_uid = :uid AND $hide_qpart
|
||||
ORDER BY order_id, title");
|
||||
|
||||
@@ -421,9 +421,9 @@ class Opml extends Handler_Protected {
|
||||
$inverse = bool_to_sql_bool($rule["inverse"]);
|
||||
$match_on = json_encode($match_on);
|
||||
|
||||
$usth = $this->pdo->prepare("INSERT INTO ttrss_filters2_rules
|
||||
$usth = $this->pdo->prepare("INSERT INTO ttrss_filters2_rules
|
||||
(feed_id,cat_id,match_on,filter_id,filter_type,reg_exp,cat_filter,inverse)
|
||||
VALUES
|
||||
VALUES
|
||||
(NULL, NULL, ?, ?, ?, ?, false, ?)");
|
||||
$usth->execute([$match_on, $filter_id, $filter_type, $reg_exp, $inverse]);
|
||||
|
||||
@@ -454,9 +454,9 @@ class Opml extends Handler_Protected {
|
||||
$filter_type = (int)$rule["filter_type"];
|
||||
$inverse = bool_to_sql_bool($rule["inverse"]);
|
||||
|
||||
$usth = $this->pdo->prepare("INSERT INTO ttrss_filters2_rules
|
||||
$usth = $this->pdo->prepare("INSERT INTO ttrss_filters2_rules
|
||||
(feed_id,cat_id,filter_id,filter_type,reg_exp,cat_filter,inverse)
|
||||
VALUES
|
||||
VALUES
|
||||
(?, ?, ?, ?, ?, ?, ?)");
|
||||
$usth->execute([$feed_id, $cat_id, $filter_id, $filter_type, $reg_exp, $cat_filter, $inverse]);
|
||||
}
|
||||
@@ -467,9 +467,9 @@ class Opml extends Handler_Protected {
|
||||
$action_id = (int)$action["action_id"];
|
||||
$action_param = $action["action_param"];
|
||||
|
||||
$usth = $this->pdo->prepare("INSERT INTO ttrss_filters2_actions
|
||||
$usth = $this->pdo->prepare("INSERT INTO ttrss_filters2_actions
|
||||
(filter_id,action_id,action_param)
|
||||
VALUES
|
||||
VALUES
|
||||
(?, ?, ?)");
|
||||
$usth->execute([$filter_id, $action_id, $action_param]);
|
||||
}
|
||||
@@ -613,7 +613,7 @@ class Opml extends Handler_Protected {
|
||||
$parent_cat_id = (int) $parent_cat_id;
|
||||
|
||||
$sth = $this->pdo->prepare("SELECT id FROM ttrss_feed_categories
|
||||
WHERE title = :title
|
||||
WHERE title = :title
|
||||
AND (parent_cat = :parent OR (:parent = 0 AND parent_cat IS NULL))
|
||||
AND owner_uid = :uid");
|
||||
|
||||
|
||||
@@ -96,7 +96,7 @@ class PluginHost {
|
||||
function get_pdo() {
|
||||
return $this->pdo;
|
||||
}
|
||||
|
||||
|
||||
function get_plugin_names() {
|
||||
$names = array();
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ class Pref_Feeds extends Handler_Protected {
|
||||
$fsth = $this->pdo->prepare("SELECT id, title, last_error,
|
||||
".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated, update_interval
|
||||
FROM ttrss_feeds
|
||||
WHERE cat_id = :cat AND
|
||||
WHERE cat_id = :cat AND
|
||||
owner_uid = :uid AND
|
||||
(:search = '' OR (LOWER(title) LIKE :search OR LOWER(feed_url) LIKE :search))
|
||||
ORDER BY order_id, title");
|
||||
@@ -238,9 +238,9 @@ class Pref_Feeds extends Handler_Protected {
|
||||
$cat['child_unread'] = 0;
|
||||
|
||||
$fsth = $this->pdo->prepare("SELECT id, title,last_error,
|
||||
".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated, update_interval
|
||||
".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated, update_interval
|
||||
FROM ttrss_feeds
|
||||
WHERE cat_id IS NULL AND
|
||||
WHERE cat_id IS NULL AND
|
||||
owner_uid = :uid AND
|
||||
(:search = '' OR (LOWER(title) LIKE :search OR LOWER(feed_url) LIKE :search))
|
||||
ORDER BY order_id, title");
|
||||
@@ -745,7 +745,7 @@ class Pref_Feeds extends Handler_Protected {
|
||||
</label>
|
||||
<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">
|
||||
<input type=\"hidden\" name=\"feed_id\" value=\"$feed_id\">
|
||||
<input type=\"hidden\" name=\"method\" value=\"uploadicon\">
|
||||
<input type=\"hidden\" name=\"method\" value=\"uploadicon\">
|
||||
<button class=\"\" dojoType=\"dijit.form.Button\" onclick=\"return uploadFeedIcon();\"
|
||||
type=\"submit\">".__('Replace')."</button>
|
||||
<button class=\"btn-danger\" dojoType=\"dijit.form.Button\" onclick=\"return removeFeedIcon($feed_id);\"
|
||||
@@ -969,7 +969,7 @@ class Pref_Feeds extends Handler_Protected {
|
||||
|
||||
$sth = $this->pdo->prepare("UPDATE ttrss_feeds SET
|
||||
cat_id = :cat_id,
|
||||
title = :title,
|
||||
title = :title,
|
||||
feed_url = :feed_url,
|
||||
site_url = :site_url,
|
||||
update_interval = :upd_intl,
|
||||
|
||||
@@ -170,12 +170,12 @@ class Pref_Users extends Handler_Protected {
|
||||
}
|
||||
|
||||
print "</ul>";
|
||||
|
||||
|
||||
|
||||
|
||||
} else {
|
||||
print "<h1>".__('User not found')."</h1>";
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
function editSave() {
|
||||
@@ -188,7 +188,7 @@ class Pref_Users extends Handler_Protected {
|
||||
if ($password) {
|
||||
$salt = substr(bin2hex(get_random_bytes(125)), 0, 250);
|
||||
$pwd_hash = encrypt_password($password, $salt, true);
|
||||
$pass_query_part = "pwd_hash = ".$this->pdo->quote($pwd_hash).",
|
||||
$pass_query_part = "pwd_hash = ".$this->pdo->quote($pwd_hash).",
|
||||
salt = ".$this->pdo->quote($salt).",";
|
||||
} else {
|
||||
$pass_query_part = "";
|
||||
@@ -265,7 +265,7 @@ class Pref_Users extends Handler_Protected {
|
||||
$sth = $pdo->prepare("SELECT login, email
|
||||
FROM ttrss_users WHERE id = ?");
|
||||
$sth->execute([$uid]);
|
||||
|
||||
|
||||
if ($row = $sth->fetch()) {
|
||||
|
||||
$login = $row["login"];
|
||||
@@ -276,7 +276,7 @@ class Pref_Users extends Handler_Protected {
|
||||
|
||||
$pwd_hash = encrypt_password($tmp_user_pwd, $new_salt, true);
|
||||
|
||||
$sth = $pdo->prepare("UPDATE ttrss_users
|
||||
$sth = $pdo->prepare("UPDATE ttrss_users
|
||||
SET pwd_hash = ?, salt = ?, otp_enabled = false
|
||||
WHERE id = ?");
|
||||
$sth->execute([$pwd_hash, $new_salt, $uid]);
|
||||
@@ -313,7 +313,7 @@ class Pref_Users extends Handler_Protected {
|
||||
|
||||
if (!$rc) print_error($mail->ErrorInfo);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user