Added default sort=0 option. Sorts all the messages by date in decending
[squirrelmail.git] / plugins / squirrelspell / sqspell_interface.php
index 8f42804083bddbff6e06186d15028601e3f580c6..32da3780cb5dfa1ab5dfc7f998d2921ed7dea03e 100644 (file)
@@ -5,7 +5,7 @@
  *
  * Main wrapper for the pop-up.
  *
- * Copyright (c) 1999-2002 The SquirrelMail development team
+ * Copyright (c) 1999-2003 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This is a main wrapper for the pop-up window interface of
@@ -42,6 +42,12 @@ require_once(SM_PATH . $SQSPELL_DIR . 'sqspell_functions.php');
  * If $MOD is undefined, use "init", else check for security
  * breaches.
  */
+if(isset($_POST['MOD'])) {
+    $MOD = $_POST['MOD'];
+} elseif (isset($_GET['MOD'])) {
+    $MOD = $_GET['MOD'];
+} 
+
 if (!isset($MOD) || !$MOD){
     $MOD='init';
 } else {