Fix autoload of userfilter.php when using ProfileFilter
[platal.git] / include / common.inc.php
index f524ec8..8d0a1ec 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2009 Polytechnique.org                              *
+ *  Copyright (C) 2003-2010 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -23,7 +23,15 @@ function __autoload($cls)
 {
     if (!pl_autoload($cls)) {
         $cls = strtolower($cls);
-        if (substr($cls, -3, 3) == 'req') {
+        if (substr($cls, 0, 4) == 'ufc_' || substr($cls, 0, 4) == 'ufo_' || $cls == 'profilefilter') {
+            __autoload('userfilter');
+            return;
+        } else if (substr($cls, 0, 4) == 'pfc_'
+                || substr($cls, 0, 4) == 'pfo_'
+                || substr($cls, 0, 8) == 'plfilter') {
+            __autoload('plfilter');
+            return;
+        } else if (substr($cls, -3, 3) == 'req') {
             @include 'validations.inc.php';
             return;
         } else if (substr($cls, 0, 6) == 'banana') {