Moving to GitHub.
[platal.git] / modules / platal.php
index 481b4c4..1772921 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2013 Polytechnique.org                              *
+ *  Copyright (C) 2003-2014 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -613,11 +613,15 @@ Adresse de secours : ' . $to));
         $wiz->apply($page, 'review', $action, $mode);
     }
 
-    function handler_test_error($page)
+    function handler_test_error($page, $mode = null)
     {
-        throw new Exception("Blih");
+        if ($mode == 'js') {
+            $page->changeTpl('platal/error.tpl');
+        } else {
+            throw new Exception("Blih");
+        }
     }
 }
 
-// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8:
 ?>