diff options
author | friendica <info@friendica.com> | 2012-04-23 22:41:32 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-23 22:41:32 -0700 |
commit | 2064d86cb39c20b738ba5f8ca35d4102216a5c30 (patch) | |
tree | 20001bd549f007e7cf708fd3e8c1903da2bb91a5 /mod/tagger.php | |
parent | 363753411914ab9d2678c5b47f432e5357ad7a04 (diff) | |
download | volse-hubzilla-2064d86cb39c20b738ba5f8ca35d4102216a5c30.tar.gz volse-hubzilla-2064d86cb39c20b738ba5f8ca35d4102216a5c30.tar.bz2 volse-hubzilla-2064d86cb39c20b738ba5f8ca35d4102216a5c30.zip |
separate tag search from body search
Diffstat (limited to 'mod/tagger.php')
-rw-r--r-- | mod/tagger.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/tagger.php b/mod/tagger.php index 3ff5d57aa..8ee499f5f 100644 --- a/mod/tagger.php +++ b/mod/tagger.php @@ -86,7 +86,7 @@ function tagger_content(&$a) { </target> EOT; - $tagid = $a->get_baseurl() . '/search?search=' . $term; + $tagid = $a->get_baseurl() . '/search?tag=' . $term; $objtype = ACTIVITY_OBJ_TAGTERM; $obj = <<< EOT @@ -105,7 +105,7 @@ EOT; if(! isset($bodyverb)) return; - $termlink = html_entity_decode('⌗') . '[url=' . $a->get_baseurl() . '/search?search=' . urlencode($term) . ']'. $term . '[/url]'; + $termlink = html_entity_decode('⌗') . '[url=' . $a->get_baseurl() . '/search?tag=' . urlencode($term) . ']'. $term . '[/url]'; $arr = array(); @@ -161,7 +161,7 @@ EOT; if((! $blocktags) && (! stristr($item['tag'], ']' . $term . '[' ))) { q("update item set tag = '%s' where id = %d limit 1", - dbesc($item['tag'] . (strlen($item['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?search=' . $term . ']'. $term . '[/url]'), + dbesc($item['tag'] . (strlen($item['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'), intval($item['id']) ); } @@ -177,7 +177,7 @@ EOT; ); if(count($x) && !$x[0]['blocktags'] && (! stristr($r[0]['tag'], ']' . $term . '['))) { q("update item set tag = '%s' where id = %d limit 1", - dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?search=' . $term . ']'. $term . '[/url]'), + dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'), intval($r[0]['id']) ); } |