]> git.wh0rd.org Git - tt-rss.git/commitdiff
fix wrong title being displayed when trying to unsubscribe from feed editor
authorAndrew Dolgov <fox@bah.org.ru>
Thu, 22 Oct 2009 07:55:50 +0000 (11:55 +0400)
committerAndrew Dolgov <fox@bah.org.ru>
Thu, 22 Oct 2009 07:55:50 +0000 (11:55 +0400)
modules/pref-feeds.php

index 17379a2bfa16abded8cae529a12f2d5f64e0a644..e8c6d878395425632ee353dad2203fef3af5eda8 100644 (file)
                                                $is_selected = "";
                                        }
 
-                                       $title = truncate_string(htmlspecialchars($tmp_line["title"]), 40);
+                                       $linked_title = truncate_string(htmlspecialchars($tmp_line["title"]), 40);
 
                                        printf("<option $is_selected value='%d'>%s</option>", 
-                                               $tmp_line["id"], $title);
+                                               $tmp_line["id"], $linked_title);
                                }
 
                        print "</select>";