]> git.wh0rd.org - tt-rss.git/commitdiff
close_button: remove useless getInfo() method
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Wed, 20 Feb 2013 12:13:02 +0000 (16:13 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Wed, 20 Feb 2013 12:13:02 +0000 (16:13 +0400)
plugins/close_button/init.php

index db553cb2f4845fa0e2da20ec3e4d5bfb89b47162..bf41833200644ac6c6b8cab9ae0f2f53d8edf863 100644 (file)
@@ -26,24 +26,5 @@ class Close_Button extends Plugin {
 
                return $rv;
        }
-
-       function getInfo() {
-               $id = db_escape_string($_REQUEST['id']);
-
-               $result = db_query($this->link, "SELECT title, link
-                               FROM ttrss_entries, ttrss_user_entries
-                               WHERE id = '$id' AND ref_id = id AND owner_uid = " .$_SESSION['uid']);
-
-               if (db_num_rows($result) != 0) {
-                       $title = truncate_string(strip_tags(db_fetch_result($result, 0, 'title')),
-                               100, '...');
-                       $article_link = db_fetch_result($result, 0, 'link');
-               }
-
-               print json_encode(array("title" => $title, "link" => $article_link,
-                               "id" => $id));
-       }
-
-
 }
 ?>