phpDocumentor updates
[squirrelmail.git] / plugins / filters / setup.php
index 8797acffcb8d04b983fce0f25534fcdf8367253f..7ad954a02337acbeb9392c8de32153e6d6862c9e 100644 (file)
@@ -1,8 +1,11 @@
 <?php
+
 /**
- * @version $Id$
- * @copyright (c) 1999-2005 The SquirrelMail Project Team
+ * Message and Spam Filter Plugin - Setup
+ *
+ * @copyright &copy; 1999-2005 The SquirrelMail Project Team
  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
  * @package plugins
  * @subpackage filters
  */
@@ -12,7 +15,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 +35,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 +45,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 +53,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