Removing HTML tags from strings
[squirrelmail.git] / plugins / squirrelspell / modules / crypto.mod
index f06ab0491265422c889a5c23b9972bbc4c6d8977..c840aa6abf6e04fbf85fea1b68f7d0b2ad0ed4f6 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * crypto.mod.php 
+ * crypto.mod
  * --------------- 
  * Squirrelspell module
  *
 global $SQSPELL_CRYPTO;
 
 switch ($_POST['action']){
-  case 'encrypt':
-    /**
-     * 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.
-     */
-    $SQSPELL_CRYPTO=true;
-    /**
-     * Call the function that does the actual encryption_decryption.
-     */
-    sqspell_writeWords($words);
-    $msg='<p>'
-       .  _("Your personal dictionary has been <strong>encrypted</strong> and is now stored in an <strong>encrypted format</strong>.")
-       . '</p>';
-  break;
-  case 'decrypt':
-    /**
-     * 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.
-     */
-    $SQSPELL_CRYPTO=false;
-    sqspell_writeWords($words);
-    $msg='<p>'
-       . _("Your personal dictionary has been <strong>decrypted</strong> and is now stored as <strong>clear text</strong>.") 
-       . '</p>';
-  break;
-  
-  case "":
-    /**
-     * Wait, this shouldn't happen! :)
-     */
-    $msg = "<p>No action requested.</p>";
-  break;
+    case 'encrypt':
+        /**
+         * 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.
+         */
+        $SQSPELL_CRYPTO=true;
+        /**
+         * Call the function that does the actual encryption_decryption.
+         */
+        sqspell_writeWords($words);
+        $msg='<p>'
+            . _("Your personal dictionary has been encrypted and is now stored in an encrypted format.") 
+            . '</p>';
+    break;
+    case 'decrypt':
+        /**
+         * 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.
+         */
+        $SQSPELL_CRYPTO=false;
+        sqspell_writeWords($words);
+        $msg='<p>'
+            . _("Your personal dictionary has been decrypted and is now stored as plain text."),
+            . '</p>';
+    break;
+    case '':
+        /**
+         * Wait, this shouldn't happen! :)
+         */
+        $msg = '<p>No action requested.</p>';
+    break;
 }
 sqspell_makePage( _("Personal Dictionary Crypto Settings"), null, $msg);