Fix accent sensitivity in autocompletion
[platal.git] / plugins / insert.getNbNotifs.php
index 3dec3f3..ad6b8cd 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2004 Polytechnique.org                              *
+ *  Copyright (C) 2003-2007 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
  *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                *
  ***************************************************************************/
 
+
 function smarty_insert_getNbNotifs($params, &$smarty)
 {
-    if(logged()) {
-       require_once('notifs.inc.php');
-       return getNbNotifs();
+    if (S::logged()) {
+        require_once('notifs.inc.php');
+        return getNbNotifs();
     }
 }
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
 ?>