]> git.wh0rd.org - tt-rss.git/blobdiff - classes/dlg.php
remove obsolete code related to version checking and tarball updater plugin
[tt-rss.git] / classes / dlg.php
index 25a194bed5546aef134ec41059c77b10aa9bda69..e3931bc3ae7c3eaee00f8ac30b0e050f353105e5 100644 (file)
@@ -220,52 +220,5 @@ class Dlg extends Handler_Protected {
                //return;
        }
 
-       function newVersion() {
-
-               $version_data = check_for_update();
-               $version = $version_data['version'];
-               $id = $version_data['version_id'];
-
-               if ($version && $id) {
-                       print "<div class='tagCloudContainer'>";
-
-                       print T_sprintf("New version of Tiny Tiny RSS is available (%s).",
-                               "<b>$version</b>");
-
-                       print "</div>";
-
-                       $details = "http://tt-rss.org/redmine/versions/$id";
-                       $download = "http://tt-rss.org/#Download";
-
-                       print "<p align='center'>".__("You can update using built-in updater in the Preferences or by using update.php")."</p>";
-
-                       print "<div style='text-align : center'>";
-                       print "<button dojoType=\"dijit.form.Button\"
-                               onclick=\"return window.open('$details')\">".__("See the release notes")."</button>";
-                       print "<button dojoType=\"dijit.form.Button\"
-                               onclick=\"return window.open('$download')\">".__("Download")."</button>";
-                       print "<button dojoType=\"dijit.form.Button\"
-                               onclick=\"return dijit.byId('newVersionDlg').hide()\">".
-                               __('Close this window')."</button>";
-
-               } else {
-                       print "<div class='tagCloudContainer'>";
-
-                       print "<p align='center'>".__("Error receiving version information or no new version available.")."</p>";
-
-                       print "</div>";
-
-                       print "<div style='text-align : center'>";
-                       print "<button dojoType=\"dijit.form.Button\"
-                               onclick=\"return dijit.byId('newVersionDlg').hide()\">".
-                               __('Close this window')."</button>";
-                       print "</div>";
-
-               }
-               print "</div>";
-
-       }
-
-
 }
 ?>