]> git.mxchange.org Git - friendica.git/commitdiff
tagmatch available to anon, add paging variable to query
authorFriendika <info@friendika.com>
Mon, 3 Oct 2011 21:47:18 +0000 (14:47 -0700)
committerFriendika <info@friendika.com>
Mon, 3 Oct 2011 21:47:18 +0000 (14:47 -0700)
boot.php
mod/tagmatch.php

index 4712318209abe9df83f72a4553331e2cc19fe31d..77066717721acbdbcf6209de953ef9869c4817f4 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -8,7 +8,7 @@ require_once("include/pgettext.php");
 require_once('include/nav.php');
 
 define ( 'FRIENDIKA_PLATFORM',     'Free Friendika');
-define ( 'FRIENDIKA_VERSION',      '2.3.1122' );
+define ( 'FRIENDIKA_VERSION',      '2.3.1123' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.21'    );
 define ( 'DB_UPDATE_VERSION',      1094      );
 
index b2313694b0bc252ca431c356fc15a41cd0970735..8023fa433beec76f7947af7ebdd69cd15b31d86c 100644 (file)
@@ -3,24 +3,22 @@
 
 function tagmatch_content(&$a) {
 
-       $search = $_REQUEST['search'];
+       $search = notags(trim($_REQUEST['search']));
        
        $o = '';
-       if(! local_user())
-               return;
-
-       $o .= '<h2>' . t('Tag Match') . ' - ' . notags($search) . '</h2>';
 
+       $o .= '<h2>' . t('Tag Match') . ' - ' . $search . '</h2>';
        
        if($search) {
-               $params['s'] = $search;
-               if($a->pager['page'] != 1)
-                       $params['p'] = $a->pager['page'];
+
+               $p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
                        
                if(strlen(get_config('system','directory_submit_url')))
-                       $x = fetch_url('http://dir.friendika.com/lsearch?f=&search=' . urlencode($search));
+                       $x = fetch_url('http://dir.friendika.com/lsearch?f=' . $p .  '&search=' . urlencode($search));
+
+//TODO fallback local search if global dir not available.
 //             else
-//                     $x = post_url($a->get_baseurl() . '/msearch', $params);
+//                     $x = post_url($a->get_baseurl() . '/lsearch', $params);
 
                $j = json_decode($x);