information about peardb backend. capitalized php, crypto names and ldap.
[squirrelmail.git] / plugins / filters / setup.php
index 8797acffcb8d04b983fce0f25534fcdf8367253f..318ca68795e29d05d3ce65ced552eb9d1efca02e 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 /**
+ * Message and Spam Filter Plugin - Setup
+ *
  * @version $Id$
  * @copyright (c) 1999-2005 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
@@ -12,7 +14,7 @@
  * @access private
  */
 function squirrelmail_plugin_init_filters() {
-    @include_once(SM_PATH . 'plugins/filters/filters.php');
+    include_once(SM_PATH . 'plugins/filters/filters.php');
     filters_init_hooks ();
 }
 
@@ -32,7 +34,7 @@ function filters_special_mailbox( $mb ) {
  * @access private
  */
 function filters_optpage_register_block_hook() {
-    @include_once(SM_PATH . 'plugins/filters/filters.php');
+    include_once(SM_PATH . 'plugins/filters/filters.php');
     filters_optpage_register_block ();
 }
 
@@ -42,7 +44,7 @@ function filters_optpage_register_block_hook() {
  * @access private
  */
 function start_filters_hook($args) {
-    @include_once(SM_PATH . 'plugins/filters/filters.php');
+    include_once(SM_PATH . 'plugins/filters/filters.php');
     start_filters ();
 }
 
@@ -50,9 +52,9 @@ function start_filters_hook($args) {
  * Called by hook to Update filters when Folders Change
  * @access private
  */
-function update_for_folder_hook() {
-    @include_once(SM_PATH . 'plugins/filters/filters.php');
-    update_for_folder ();
+function update_for_folder_hook($args) {
+    include_once(SM_PATH . 'plugins/filters/filters.php');
+    update_for_folder ($args);
 }
 
 ?>
\ No newline at end of file