aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xapp/controllers/indexController.php2
-rw-r--r--app/views/javascript/actualize.phtml7
2 files changed, 0 insertions, 9 deletions
diff --git a/app/controllers/indexController.php b/app/controllers/indexController.php
index ce1a188e7..9f71c0e57 100755
--- a/app/controllers/indexController.php
+++ b/app/controllers/indexController.php
@@ -11,8 +11,6 @@ class indexController extends ActionController {
if ($output == 'rss') {
$this->view->_useLayout (false);
} else {
- View::appendScript (Url::display (array ('c' => 'javascript', 'a' => 'actualize')));
-
if(!$output) {
$output = $this->view->conf->viewMode();
Request::_param ('output', $output);
diff --git a/app/views/javascript/actualize.phtml b/app/views/javascript/actualize.phtml
index fa6e67ddb..f39540a9a 100644
--- a/app/views/javascript/actualize.phtml
+++ b/app/views/javascript/actualize.phtml
@@ -36,10 +36,3 @@ function updateFeeds () {
});
}
}
-
-$(document).ready (function () {
- $("#actualize").click (function () {
- updateFeeds ();
- return false;
- });
-});