X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fcarnet.php;h=dfc2d6d1aa1e5c516e5b34143401a8d788a02ed2;hb=55fd4ff4b86d5ef051fde7f7eaa4ea1a9661982b;hp=108ebdb0ad7bae7cd8bfc048ba686cb2cc7836fd;hpb=a2aa843639f292ed0197ffb06edf7e19174b27e8;p=platal.git diff --git a/modules/carnet.php b/modules/carnet.php index 108ebdb..dfc2d6d 100644 --- a/modules/carnet.php +++ b/modules/carnet.php @@ -29,11 +29,11 @@ class CarnetModule extends PLModule 'carnet/notifs' => $this->make_hook('notifs', AUTH_COOKIE), 'carnet/contacts' => $this->make_hook('contacts', AUTH_COOKIE), - 'carnet/contacts/pdf' => $this->make_hook('pdf', AUTH_COOKIE), - 'carnet/contacts/ical' => $this->make_hook('ical', AUTH_PUBLIC), - 'carnet/contacts/vcard' => $this->make_hook('vcard', AUTH_COOKIE), + 'carnet/contacts/pdf' => $this->make_hook('pdf', AUTH_COOKIE, 'user', NO_HTTPS), + 'carnet/contacts/ical' => $this->make_hook('ical', AUTH_PUBLIC, 'user', NO_HTTPS), + 'carnet/contacts/vcard' => $this->make_hook('vcard', AUTH_COOKIE, 'user', NO_HTTPS), - 'carnet/rss' => $this->make_hook('rss', AUTH_PUBLIC), + 'carnet/rss' => $this->make_hook('rss', AUTH_PUBLIC, 'user', NO_HTTPS), ); } @@ -183,6 +183,12 @@ class CarnetModule extends PLModule return Array($total, $list); } + function searchErrorHandler($explain) { + global $page; + $page->trig($explain); + $this->handler_contacts($page); + } + function handler_contacts(&$page, $action = null, $subaction = null, $ssaction = null) { $page->assign('xorg_title','Polytechnique.org - Mes contacts'); @@ -237,7 +243,10 @@ class CarnetModule extends PLModule if ($search && trim(Env::v('quick'))) { require_once 'userset.inc.php'; $base = 'carnet/contacts/search'; - $view = new SearchSet(true, false, "INNER JOIN contacts AS c2 ON (u.user_id = c2.contact)", " c2.uid = $uid AND "); + + require_once(dirname(__FILE__) . '/search/classes.inc.php'); + ThrowError::$throwHook = array($this, 'searchErrorHandler'); + $view = new SearchSet(true, false, "INNER JOIN contacts AS c2 ON (u.user_id = c2.contact)", "c2.uid = $uid"); } else { $base = 'carnet/contacts'; $view = new UserSet("INNER JOIN contacts AS c2 ON (u.user_id = c2.contact)", " c2.uid = $uid ");