summaryrefslogtreecommitdiff
path: root/classes/handler
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-01 20:57:05 +0300
committerAndrew Dolgov <[email protected]>2017-12-01 20:57:05 +0300
commitdc393a580b0fdb630c3457c3ceab832bb0ef28f9 (patch)
tree37275eff4955b5fd75a1fdbd8cc3aa3a04c7e2d8 /classes/handler
parent3623ebb1a12caae33ec76c0fe6f379a73df2d6fd (diff)
public: use PDO headlines result
Diffstat (limited to 'classes/handler')
-rw-r--r--classes/handler/public.php18
1 files changed, 2 insertions, 16 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 56fe59b71..4ae65e494 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -55,20 +55,6 @@ class Handler_Public extends Handler {
$result = $qfh_ret[0];
- if (db_num_rows($result) != 0) {
-
- $ts = strtotime(db_fetch_result($result, 0, $date_check_field));
-
- if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) &&
- strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= $ts) {
- header('HTTP/1.0 304 Not Modified');
- return;
- }
-
- $last_modified = gmdate("D, d M Y H:i:s", $ts) . " GMT";
- header("Last-Modified: $last_modified", true);
- }
-
$params = array(
"owner_uid" => $owner_uid,
"feed" => $feed,
@@ -106,7 +92,7 @@ class Handler_Public extends Handler {
$tpl->setVariable('FEED_URL', htmlspecialchars($feed_self_url), true);
$tpl->setVariable('SELF_URL', htmlspecialchars(get_self_url_prefix()), true);
- while ($line = db_fetch_assoc($result)) {
+ while ($line = $result->fetch()) {
$line["content_preview"] = sanitize(truncate_string(strip_tags($line["content"]), 100, '...'));
@@ -194,7 +180,7 @@ class Handler_Public extends Handler {
$feed['articles'] = array();
- while ($line = db_fetch_assoc($result)) {
+ while ($line = $result->fetch()) {
$line["content_preview"] = sanitize(truncate_string(strip_tags($line["content_preview"]), 100, '...'));