File: perminvalid.ihtml

package info (click to toggle)
phplib 2%3A7.2d-3.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,612 kB
  • ctags: 198
  • sloc: php: 6,095; pascal: 186; perl: 95; makefile: 78; sh: 6
file content (23 lines) | stat: -rw-r--r-- 670 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
 <head>
  <title>Permission denied</title>
 </head>

 <body bgcolor="#ffffff">
  <h1>Permission denied</h1>

  Your session <b><?php print $sess->id ?></b> has been authenticated
  with a user id of <b><?php print $auth->auth["uid"] ?></b> and a user
  name of <b><?php
		print isset($auth->auth["uname"]) ? $auth->auth["uname"] : "(unknown)";
?></b>.<p>

  To access this page, the following permissions are required: 
  <b><?php print $must_have ?></b>.<br>
  
  I won't let you access this page, because you have these permissions:
  <b><?php print $does_have ?></b>.<p>

 </body>
</html>
<!-- $Id: perminvalid.ihtml,v 1.1.1.1 2000/04/17 16:40:11 kk Exp $ -->