X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fsearch.php;h=a6a4b613fcb5b87a3cff55dce47f24e2f5ddc516;hb=fce9988f73ee8ad3624586e6866a68a2ae952ef8;hp=7605e9ae264f646ec3066df5d37347e373984cd4;hpb=57eb0576b018902d020bbf17e5b38a4ed7c440fd;p=friendica.git diff --git a/mod/search.php b/mod/search.php index 7605e9ae26..a6a4b613fc 100644 --- a/mod/search.php +++ b/mod/search.php @@ -9,6 +9,9 @@ function search_post(&$a) { function search_content(&$a) { + if(x($_SESSION,'theme')) + unset($_SESSION['theme']); + $o = '' . "\r\n"; $o .= '

' . t('Search') . '

'; @@ -78,6 +81,7 @@ function search_content(&$a) { foreach($r as $item) { + $total = 0; $comment = ''; $owner_url = ''; $owner_photo = ''; @@ -88,6 +92,8 @@ function search_content(&$a) { && ($item['id'] != $item['parent'])) continue; + $total ++; + $profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']); $profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $item['thumb']); $profile_link = ((strlen($item['author-link'])) ? $item['author-link'] : $item['url']); @@ -127,6 +133,13 @@ function search_content(&$a) { } } + + if(! $r[0]['total']) { + notice('No results.'); + return $o; + } + + $o .= paginate($a); return $o;