Browse Source

$note was being checked (with isset()) but never fetched from $_GET. Fixed.

tassium 22 years ago
parent
commit
dfc8ac17d1
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/right_main.php

+ 3 - 0
src/right_main.php

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