diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 98d0f132ad69d58bf2aa658588e93aa2f336d125..896af1dd6e56242a79e8f30410ab9bbd6d9c3d64 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -2426,8 +2426,9 @@
 				$('#searchresults').addClass('filter-empty');
 				$('#searchresults .emptycontent').addClass('emptycontent-search');
 				if ( $('#searchresults').length === 0 || $('#searchresults').hasClass('hidden') ) {
+					var error = t('files', "No search results in other folders for '{tag}{filter}{endtag}'", {filter:this._filter}, null, {'escape': false});
 					this.$el.find('.nofilterresults').removeClass('hidden').
-						find('p').text(t('files', "No entries in this folder match '{filter}'", {filter:this._filter},  null, {'escape': false}));
+						find('p').html(error.replace('{tag}', '<strong>').replace('{endtag}', '</strong>'));
 				}
 			} else {
 				$('#searchresults').removeClass('filter-empty');
diff --git a/apps/files/js/search.js b/apps/files/js/search.js
index 625e4b13f4b72322872fc5c9bb85a899a7c91690..fa79d695165f8217c248c4360b536c53b68dd1f4 100644
--- a/apps/files/js/search.js
+++ b/apps/files/js/search.js
@@ -63,7 +63,7 @@
 				 show size and last modified date on the right */
 				this.updateLegacyMimetype(result);
 
-				var $pathDiv = $('<div class="path"></div>').text(result.path);
+				var $pathDiv = $('<div class="path"></div>').text(result.path.substr(1));
 				$row.find('td.info div.name').after($pathDiv).text(result.name);
 
 				$row.find('td.result a').attr('href', result.link);
@@ -80,7 +80,7 @@
 				 show size and last modified date on the right */
 				this.updateLegacyMimetype(result);
 
-				var $pathDiv = $('<div class="path"></div>').text(result.path);
+				var $pathDiv = $('<div class="path"></div>').text(result.path.substr(1));
 				$row.find('td.info div.name').after($pathDiv).text(result.name);
 
 				$row.find('td.result a').attr('href', result.link);
diff --git a/apps/files_sharing/templates/list.php b/apps/files_sharing/templates/list.php
index f59cb7653d888fa5392c55ea82c498a3afd142e4..785b2bc72a4cc48d70edb71187a4300b45313c95 100644
--- a/apps/files_sharing/templates/list.php
+++ b/apps/files_sharing/templates/list.php
@@ -8,7 +8,6 @@
 <div class="nofilterresults hidden">
 	<div class="icon-search"></div>
 	<h2><?php p($l->t('No entries found in this folder')); ?></h2>
-	<p></p>
 </div>
 
 <table id="filestable">
diff --git a/core/search/js/search.js b/core/search/js/search.js
index ef99cf7e9616e81aceefd89e4733d77f5931bbc6..93b1961eea531d86abc0bb911e7a4a2ea6706c8f 100644
--- a/core/search/js/search.js
+++ b/core/search/js/search.js
@@ -217,7 +217,8 @@
 					$status.addClass('emptycontent').removeClass('status');
 					$status.html('');
 					$status.append('<div class="icon-search"></div>');
-					$status.append('<h2>' + t('core', 'No search results in other folders') + '</h2>');
+					var error = t('core', "No search results in other folders for '{tag}{filter}{endtag}'", {filter:lastQuery});
+					$status.append('<h2>' + error.replace('{tag}', '<strong>').replace('{endtag}', '</strong>') + '</h2>');
 				} else {
 					$status.removeClass('emptycontent').addClass('status');
 					$status.text(n('core', '{count} search result in another folder', '{count} search results in other folders', count, {count:count}));