get rid of deprecated post_url() function

This commit is contained in:
friendica
2013-12-01 19:52:18 -08:00
parent 194c1e7abc
commit 92f60ef51f
2 changed files with 10 additions and 106 deletions

View File

@@ -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);