diff --git a/app/controllers/resources/search.php b/app/controllers/resources/search.php
index db73a13203ee81a2633a4f9ecf6a11f084286646..3b89afdefc85463f049265d1a4c93e2ebece976a 100644
--- a/app/controllers/resources/search.php
+++ b/app/controllers/resources/search.php
@@ -66,6 +66,7 @@ class Resources_SearchController extends AuthenticatedController
 
         $this->form_submitted = false;
 
+
         if ($this->tree_selected_resource) {
             $resource = Resource::find($this->tree_selected_resource);
             if (!$resource) {
@@ -97,6 +98,14 @@ class Resources_SearchController extends AuthenticatedController
             $this->booking_plan_action_params = [];
 
             if ($this->form_submitted) {
+                $actions = new ShareWidget();
+                $actions->addCopyableLink(
+                    _('URL zur Suche kopieren'),
+                    $_SERVER['REQUEST_URI'],
+                    Icon::create('group')
+                );
+                $sidebar->insertWidget($actions, ':first');
+
                 //Check if the time range criteria has been set.
                 //If so, set the begin date as parameter for the
                 //booking plan action URL.
@@ -108,6 +117,7 @@ class Resources_SearchController extends AuthenticatedController
                     }
                 }
             }
+
         }
     }
 }