Commit ad627f401c0601638b9493b6a26c355ad3103234

Authored by Neil Blakey-Milner
1 parent 94ef26fc

Almost all pages need to checkSession, not just admin ones. Add

KTStandardDispatcher to handle this.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3496 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 4 additions and 1 deletions
lib/dispatcher.inc.php
... ... @@ -54,7 +54,7 @@ class KTDispatcher {
54 54 }
55 55 }
56 56  
57   -class KTAdminDispatcher extends KTDispatcher {
  57 +class KTStandardDispatcher extends KTDispatcher {
58 58 function permissionDenied () {
59 59 print "Permission denied";
60 60 }
... ... @@ -67,4 +67,7 @@ class KTAdminDispatcher extends KTDispatcher {
67 67 }
68 68 }
69 69  
  70 +class KTAdminDispatcher extends KTStandardDispatcher {
  71 +}
  72 +
70 73 ?>
... ...