Added (c) notice
authorphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 22 Jan 2002 12:43:58 +0000 (12:43 +0000)
committerphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 22 Jan 2002 12:43:58 +0000 (12:43 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2203 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/listcommands/mailout.php
plugins/listcommands/setup.php

index a46815694fc5a4a350262ade375faf155f789513..c99d7cfa7d285fb1f089f2ae00f0840baa9e0dc1 100644 (file)
@@ -1,8 +1,11 @@
 <?php
-/*
- * mailout.php part of listcommands plugin
- * last modified: 2002/01/21 by Thijs Kinkhorst
+/**
+ * mailout.php
+ *
+ * Copyright (c) 1999-2002 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
+ * $Id$
  */
 
 chdir('..');
@@ -19,10 +22,10 @@ echo '<P><TABLE align="center" width="75%" BGCOLOR="' . $color[0] ."\">\n"
 
 switch ( $action ) {
 case 'Help':
-    $out_string .= _("This will send a message to %s requesting help for this list. You will receive an emailed response at the address below.");
+    $out_string = _("This will send a message to %s requesting help for this list. You will receive an emailed response at the address below.");
     break;
 case 'Subscribe':
-    $out_string .= _("This will send a message to %s requesting that you will be subscribed to this list. You will be subscribed with the address below.");
+    $out_string = _("This will send a message to %s requesting that you will be subscribed to this list. You will be subscribed with the address below.");
     break;
 case 'Unsubscribe':
     $out_string = _("This will send a message to %s requesting that you will be unsubscribed from this list. It will try to unsubscribe the adress below.");
index d333c479ebe4d17e9ea2b06a1d402f9b6c1f0cd3..7aef8d7f45789164bc95c5b36a47704370fa7613 100644 (file)
@@ -1,18 +1,20 @@
 <?php
-/*
- * Listcommands plugin v1.3
+
+/**
+ * setup.php
+ *
+ * Copyright (c) 1999-2002 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * Implementation of RFC 2369 for SquirrelMail.
  * When viewing a message from a mailinglist complying with this RFC,
  * this plugin displays a menu which gives the user a choice of mailinglist
  * commands such as (un)subscribe, help and list archives.
  *
- * last modified: 2002/01/21 by Thijs Kinkhorst
- * please send bug reports to <thijs@kinkhorst.com>
- *
+ * $Id$
  */
-function squirrelmail_plugin_init_listcommands ()
-{
+
+function squirrelmail_plugin_init_listcommands () {
     global $squirrelmail_plugin_hooks;
 
     $squirrelmail_plugin_hooks['read_body_header']['listcommands'] = 'plugin_listcommands_menu';