X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fsearch.inc.php;h=296eaa14b25d28bb057fec85ca633f6133cc4aaf;hb=0fcbe8d082a7b97c668edd5954038e01ad41484f;hp=d40856ba40db3427ab674e54d040cd316c06528c;hpb=21c445de04b9bfda09554d608a1e81745539be5f;p=platal.git diff --git a/include/search.inc.php b/include/search.inc.php index d40856b..296eaa1 100644 --- a/include/search.inc.php +++ b/include/search.inc.php @@ -1,6 +1,6 @@ orders as $key=>$o) { if ($o[3] == AUTH_COOKIE) { - $this->orders[$key][3] = logged(); + $this->orders[$key][3] = S::logged(); } elseif ($o[3] == AUTH_PUBLIC) { $this->orders[$key][3] = true; } else { - $this->orders[$key][3] = identified(); + $this->orders[$key][3] = S::identified(); } } } @@ -98,7 +151,7 @@ class XOrgSearch extends XOrgPlugin list($list, $total) = call_user_func($this->_callback, $offset, $this->limit, $sql_order); $page_max = intval(($total-1)/$this->limit); - if(!logged() && $page_max > $globals->search->public_max) + if(!S::logged() && $page_max > $globals->search->public_max) $page_max = $globals->search->public_max; $links = Array();