Fix accent sensitivity in autocompletion
[platal.git] / plugins / insert.mkStats.php
index e4b66d8..0133eee 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   *
 
 /*
  * Smarty plugin
- * ------------------------------------------------------------- 
+ * -------------------------------------------------------------
  * File:     insert.mkStats.php
  * Type:     insert
  * Name:     mkStats
- * Purpose:  
+ * Purpose:
  * -------------------------------------------------------------
  */
 function smarty_insert_mkStats($params, &$smarty)
 {
-    global $globals;
-    $res = $globals->xdb->query('select count(*) from requests');
+    $res = XDB::query('select count(*) from requests');
     $cnt = $res->fetchOneCell();
     return ($cnt ? $cnt : '-');
 }
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
 ?>