浏览代码

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

tassium 22 年之前
父节点
当前提交
dfc8ac17d1
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      src/right_main.php

+ 3 - 0
src/right_main.php

@@ -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 */