aboutsummaryrefslogtreecommitdiffstats
path: root/mod/match.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-12-01 19:52:18 -0800
committerfriendica <info@friendica.com>2013-12-01 19:52:18 -0800
commit92f60ef51fc8c85f632a245847c75ab27980d0de (patch)
treea5084454292735f2cacd4228e0385a1360c316fc /mod/match.php
parent194c1e7abcab681510f57d8bb36d8d5fb76d9354 (diff)
downloadvolse-hubzilla-92f60ef51fc8c85f632a245847c75ab27980d0de.tar.gz
volse-hubzilla-92f60ef51fc8c85f632a245847c75ab27980d0de.tar.bz2
volse-hubzilla-92f60ef51fc8c85f632a245847c75ab27980d0de.zip
get rid of deprecated post_url() function
Diffstat (limited to 'mod/match.php')
-rw-r--r--mod/match.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/mod/match.php b/mod/match.php
index 23eeb9370..5447f755d 100644
--- a/mod/match.php
+++ b/mod/match.php
@@ -1,5 +1,9 @@
<?php
+// FIXME - this has never been properly ported from Friendica
+// It takes keywords from your profile and queries the directory server for
+// matching keywords from other profiles.
+
function match_content(&$a) {
@@ -30,10 +34,10 @@ function match_content(&$a) {
if($a->pager['page'] != 1)
$params['p'] = $a->pager['page'];
- if(strlen(get_config('system','directory_submit_url')))
- $x = post_url('http://dir.friendica.com/msearch', $params);
- else
- $x = post_url($a->get_baseurl() . '/msearch', $params);
+// if(strlen(get_config('system','directory_submit_url')))
+// $x = post_url('http://dir.friendica.com/msearch', $params);
+// else
+// $x = post_url($a->get_baseurl() . '/msearch', $params);
$j = json_decode($x);