The copyright message should be consistent.
[squirrelmail.git] / plugins / squirrelspell / modules / crypto.mod
index 822397393d785b3cab5367f8e7ec495551813223..a161eb2f23e0a4d23f6a68d92036ca430dd18f64 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 /**
  * crypto.mod
- * --------------- 
+ * ---------------
  * Squirrelspell module
  *
- * Copyright (c) 1999-2004 The SquirrelMail development team
+ * Copyright (c) 1999-2005 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This module handles the encryption/decryption of the user dictionary
@@ -27,7 +27,7 @@ switch ($_POST['action']){
          * Let's encrypt the file and save it in an encrypted format.
          */
         $words=sqspell_getWords();
-        /** 
+        /**
          * Flip the flag so the sqspell_writeWords function knows to encrypt
          * the message before writing it to the disk.
          */
@@ -37,7 +37,7 @@ switch ($_POST['action']){
          */
         sqspell_writeWords($words);
         $msg='<p>'
-            . _("Your personal dictionary has been encrypted and is now stored in an encrypted format.") 
+            . _("Your personal dictionary has been encrypted and is now stored in an encrypted format.")
             . '</p>';
     break;
     case 'decrypt':
@@ -45,7 +45,7 @@ switch ($_POST['action']){
          * Let's decrypt the file and save it as plain text.
          */
         $words=sqspell_getWords();
-        /** 
+        /**
          * Flip the flag and tell the sqspell_writeWords() function that we
          * want to save it plaintext.
          */
@@ -72,4 +72,4 @@ sqspell_makePage( _("Personal Dictionary Crypto Settings"), null, $msg);
  * vim: syntax=php
  */
 
-?>
+?>
\ No newline at end of file