1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-03 01:29:13 +00:00

mobile: add support for publishing articles

This commit is contained in:
Andrew Dolgov
2007-12-05 07:28:19 +01:00
parent 85233b8ea0
commit 510ac75fa0
2 changed files with 19 additions and 1 deletions

View File

@@ -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;
}
?>
<html>
<head>