$note was being checked (with isset()) but never fetched from $_GET. Fixed.
authortassium <tassium@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 22 Jan 2003 04:43:16 +0000 (04:43 +0000)
committertassium <tassium@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 22 Jan 2003 04:43:16 +0000 (04:43 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4446 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/right_main.php

index dd53d45922c12d4f05f8108753375a6c9c7cac79..c634e0755f983d77395b2e679614a2d815a6902f 100644 (file)
@@ -89,6 +89,9 @@ if (isset($_GET['session'])) {
     $session = $_GET['session'];
 }
 
     $session = $_GET['session'];
 }
 
+if (isset($_GET['note'])) {
+       $note = $_GET['note'];
+}
 
 /* end of get globals */
 
 
 /* end of get globals */