diff --git a/application/controllers/DashboardController.php b/application/controllers/DashboardController.php
index 444e4b4e7..0b39590d4 100644
--- a/application/controllers/DashboardController.php
+++ b/application/controllers/DashboardController.php
@@ -126,6 +126,7 @@ class DashboardController extends ActionController
         }
         $this->view->title = $dashboard->getActivePane()->getTitle() . ' :: Dashboard';
         $this->view->tabs = $dashboard->getTabs();
+        /* Temporarily removed
         $this->view->tabs->add(
             'Add',
             array(
@@ -133,6 +134,7 @@ class DashboardController extends ActionController
                 'url' => Url::fromPath('dashboard/addurl')
             )
         );
+        */
         $this->view->dashboard = $dashboard;
     }
 }