Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--search/index.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/search/index.php b/search/index.php
index e6f41528ea3..b348b22387f 100644
--- a/search/index.php
+++ b/search/index.php
@@ -38,6 +38,9 @@ OC_UTIL::addStyle( 'search', 'search' );
$query=(isset($_POST['query']))?$_POST['query']:'';
if($query){
$results=OC_SEARCH::search($query);
+}else{
+ header("Location: ".$WEBROOT.'/'.OC_APPCONFIG::getValue("core", "defaultpage", "files/index.php"));
+ exit();
}
$resultTypes=array();