summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-02-20 13:12:55 +0300
committerAndrew Dolgov <[email protected]>2019-02-20 13:12:55 +0300
commit6701497879d3e6c9e895cfcd56fb2d7a9297686d (patch)
treeb82cd3b620ec6b7a363d351cc5cd587b00c99aa9 /classes
parentbe322d6fc879c0142f1047e99cc2971d817b47c5 (diff)
public.php: markup cleanup
Diffstat (limited to 'classes')
-rwxr-xr-xclasses/handler/public.php72
1 files changed, 26 insertions, 46 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 41544f188..00911e06e 100755
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -61,8 +61,7 @@ class Handler_Public extends Handler {
PluginHost::feed_to_pfeed_id($feed));
if ($handler) {
- $qfh_ret = $handler->get_headlines(PluginHost::feed_to_pfeed_id($feed),
- $options);
+ $qfh_ret = $handler->get_headlines(PluginHost::feed_to_pfeed_id($feed), $params);
}
} else {
@@ -383,26 +382,6 @@ class Handler_Public extends Handler {
$line['content'] = rewrite_cached_urls($line['content']);
- $num_comments = (int) $line["num_comments"];
- $entry_comments = "";
-
- if ($num_comments > 0) {
- if ($line["comments"]) {
- $comments_url = htmlspecialchars($line["comments"]);
- } else {
- $comments_url = htmlspecialchars($line["link"]);
- }
- $entry_comments = "<a class=\"comments\"
- target='_blank' rel=\"noopener noreferrer\" href=\"$comments_url\">$num_comments ".
- _ngettext("comment", "comments", $num_comments)."</a>";
-
- } else {
- if ($line["comments"] && $line["link"] != $line["comments"]) {
- $entry_comments = "<a class=\"comments\" target='_blank' rel=\"noopener noreferrer\" href=\"".
- htmlspecialchars($line["comments"])."\">".__("comments")."</a>";
- }
- }
-
$enclosures = Article::get_article_enclosures($line["id"]);
header("Content-Type: text/html");
@@ -965,34 +944,35 @@ class Handler_Public extends Handler {
} else if (!$method) {
print_notice(__("You will need to provide valid account name and email. Password reset link will be sent to your email address."));
- print "<form method='POST' action='public.php'>";
- print "<input type='hidden' name='method' value='do'>";
- print "<input type='hidden' name='op' value='forgotpass'>";
-
- print "<fieldset>";
- print "<label>".__("Login:")."</label>";
- print "<input dojoType='dijit.form.TextBox' type='text' name='login' value='' required>";
- print "</fieldset>";
-
- print "<fieldset>";
- print "<label>".__("Email:")."</label>";
- print "<input dojoType='dijit.form.TextBox' type='email' name='email' value='' required>";
- print "</fieldset>";
+ print "<form method='POST' action='public.php'>
+ <input type='hidden' name='method' value='do'>
+ <input type='hidden' name='op' value='forgotpass'>
+
+ <fieldset>
+ <label>".__("Login:")."</label>
+ <input dojoType='dijit.form.TextBox' type='text' name='login' value='' required>
+ </fieldset>
+
+ <fieldset>
+ <label>".__("Email:")."</label>
+ <input dojoType='dijit.form.TextBox' type='email' name='email' value='' required>
+ </fieldset>";
$_SESSION["pwdreset:testvalue1"] = rand(1,10);
$_SESSION["pwdreset:testvalue2"] = rand(1,10);
- print "<fieldset>";
- print "<label>".T_sprintf("How much is %d + %d:", $_SESSION["pwdreset:testvalue1"], $_SESSION["pwdreset:testvalue2"])."</label>";
- print "<input dojoType='dijit.form.TextBox' type='text' name='test' value='' required>";
- print "</fieldset>";
-
- print "<hr/>";
- print "<fieldset>";
- print "<button dojoType='dijit.form.Button' type='submit' class='alt-danger'>".__("Reset password")."</button>";
- print "</fieldset>";
-
- print "</form>";
+ print "<fieldset>
+ <label>".T_sprintf("How much is %d + %d:", $_SESSION["pwdreset:testvalue1"], $_SESSION["pwdreset:testvalue2"])."</label>
+ <input dojoType='dijit.form.TextBox' type='text' name='test' value='' required>
+ </fieldset>
+
+ <hr/>
+ <fieldset>
+ <button dojoType='dijit.form.Button' type='submit' class='alt-danger'>".__("Reset password")."</button>
+ <a href='index.php'>".__("Return to Tiny Tiny RSS")."</a>
+ </fieldset>
+
+ </form>";
} else if ($method == 'do') {
$login = clean($_POST["login"]);