From b2d8bc6ca1ffbf4269c91bbe6cd73471388d935e Mon Sep 17 00:00:00 2001 From: tokul Date: Sun, 18 Apr 2004 15:47:31 +0000 Subject: [PATCH] marking function as private. moving copyright and license info into phpdoc tags git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7159 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- plugins/filters/filters.php | 6 +++--- plugins/filters/index.php | 6 ++---- plugins/filters/options.php | 5 ++--- plugins/filters/setup.php | 7 +++---- plugins/filters/spamoptions.php | 7 +++---- 5 files changed, 13 insertions(+), 18 deletions(-) diff --git a/plugins/filters/filters.php b/plugins/filters/filters.php index 5b9ebdc9..5c3a75bf 100644 --- a/plugins/filters/filters.php +++ b/plugins/filters/filters.php @@ -2,9 +2,6 @@ /** * Message and Spam Filter Plugin - Filtering Functions * - * Copyright (c) 1999-2004 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. - * * This plugin filters your inbox into different folders based upon given * criteria. It is most useful for people who are subscibed to mailing lists * to help organize their messages. The argument stands that filtering is @@ -22,6 +19,8 @@ * Also view plugins/README.plugins for more information. * * @version $Id$ + * @copyright (c) 1999-2004 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @package plugins * @subpackage filters */ @@ -764,6 +763,7 @@ function filter_swap($id1, $id2) { /** * This update the filter rules when renaming or deleting folders * @param array $args + * @access private */ function update_for_folder ($args) { $old_folder = $args[0]; diff --git a/plugins/filters/index.php b/plugins/filters/index.php index ac1800eb..e4b52db3 100644 --- a/plugins/filters/index.php +++ b/plugins/filters/index.php @@ -1,14 +1,12 @@