From 510ac75fa088fd69e2311c82c375de50e13b39e4 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 5 Dec 2007 07:28:19 +0100 Subject: mobile: add support for publishing articles --- mobile/functions.php | 9 ++++++++- mobile/tt-rss.php | 11 +++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/mobile/functions.php b/mobile/functions.php index 3d67f4a23..0bd65082a 100644 --- a/mobile/functions.php +++ b/mobile/functions.php @@ -458,7 +458,13 @@ } else { $marked_pic = ""; } - + + if ($line["published"] == "t" || $line["published"] == "1") { + $published_pic = ""; + } else { + $published_pic = ""; + } + $content_link = "" . $line["title"] . ""; @@ -472,6 +478,7 @@ print "
  • "; print "$marked_pic"; + print "$published_pic"; print $content_link; diff --git a/mobile/tt-rss.php b/mobile/tt-rss.php index 1b3b0763f..0793ce497 100644 --- a/mobile/tt-rss.php +++ b/mobile/tt-rss.php @@ -59,6 +59,17 @@ header("Location: tt-rss.php?$query_string"); return; } + + $tp_id = db_escape_string($_GET["tp"]); + + if ($go == "vf" && $tp_id) { + $result = db_query($link, "UPDATE ttrss_user_entries SET published = NOT published + WHERE ref_id = '$tp_id' AND owner_uid = " . $_SESSION["uid"]); + $query_string = preg_replace("/&tp=[0-9]*/", "", $_SERVER["QUERY_STRING"]); + header("Location: tt-rss.php?$query_string"); + return; + } + ?> -- cgit v1.2.3