Don't use the domain part in login anymore.
[platal.git] / modules / bandeau.php
index 4a226ac..0870348 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2009 Polytechnique.org                              *
+ *  Copyright (C) 2003-2011 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -24,29 +24,31 @@ class BandeauModule extends PLModule
     function handlers()
     {
         return array(
-            'bandeau/icone.png'  => $this->make_hook('icone', AUTH_PUBLIC, 'user', NO_HTTPS),
-            'bandeau'            => $this->make_hook('html',  AUTH_PUBLIC, 'user', NO_HTTPS),
-            'bandeau.css'                               => $this->make_hook('css',   AUTH_PUBLIC, 'user', NO_HTTPS),
+            'bandeau/icone.png' => $this->make_hook('icone', AUTH_PUBLIC, 'user', NO_HTTPS),
+            'bandeau'           => $this->make_hook('html',  AUTH_PUBLIC, 'user', NO_HTTPS),
+            'bandeau.css'       => $this->make_hook('css',   AUTH_PUBLIC, 'user', NO_HTTPS),
         );
     }
 
-    function handler_icone(&$page)
+    function handler_icone($page)
     {
-        header("Content-Type: image/png");
+        pl_cached_content_headers("image/png");
         readfile('../htdocs/images/x.png');
         exit();
     }
 
-    function handler_html(&$page, $login = '')
+    function handler_html($page, $login = '')
     {
+        pl_cached_content_headers("text/html");
         $page->changeTpl('skin/common.bandeau.tpl', NO_SKIN);
         $page->assign('login', $login == 'login');
         $page->assign('seed', $login);
+        $page->assign('external', true);
     }
 
-    function handler_css(&$page)
+    function handler_css($page)
     {
-        header("Content-Type: text/css");
+        pl_cached_content_headers("text/css");
         readfile('../htdocs/css/bandeau.css');
         exit();
     }