]> git.datanom.net - qtadmin.git/blobdiff - message_view.php
add more debug info
[qtadmin.git] / message_view.php
index fabf6988a99b2dd3c9e85d66babb2a4dba7a5af8..93cc33946eda98d29818bf8560618b4e9d30a6eb 100644 (file)
         $id = $_GET['id'];
         $id = urldecode($id);
 
+        $mail = unserialize($_SESSION['mailInfo'][$id]);
+
+        if (! is_object($mail) || false == $util->authorized($mail->recipient)) {
+            header('Location: qtadmin.php');
+            exit;
+        }
+
         $util->setHeading("Message ID : $id");
         echo $util->getHeader();
         echo $util->getHeading();
 
-        $mail = unserialize($_SESSION['mailInfo'][$id]);
-
         $row = $DB->getMail($id);
         $string = $row->mail_text;
         $sa_tests = null;
@@ -90,7 +95,7 @@
         echo '</td></tr></table>';
         echo $util->getFooter();
     } else if ($loggedIn) {
-        header('Location: index.php');
+        header('Location: qtadmin.php');
     } else {
         header('Location: auth.php');
     }
This page took 0.02947 seconds and 5 git commands to generate.