1
1
Fork 0

don't use openid CURL wrapper if open_basedir is set (even if safe_mode isn't)

This commit is contained in:
Friendika 2011-01-02 21:01:07 -08:00
commit 0a485e6664
2 changed files with 3 additions and 1 deletions

View file

@ -40,6 +40,8 @@ function directory_content(&$a) {
$sql_extra = ((strlen($search)) ? " AND MATCH (`profile`.`name`, `user`.`nickname`, `locality`,`region`,`country-name`,`gender`,`marital`,`sexual`,`about`,`romance`,`work`,`education`,`keywords` ) AGAINST ('$search' IN BOOLEAN MODE) " : "");
$r = q("SELECT COUNT(*) AS `total` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `publish` = 1 AND `user`.`blocked` = 0 $sql_extra ");
if(count($r))
$a->set_pager_total($r[0]['total']);