]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/WikiUser/Forbidden.php
add PdoDbPassUser
[SourceForge/phpwiki.git] / lib / WikiUser / Forbidden.php
1 <?php //-*-php-*-
2 rcs_id('$Id: Forbidden.php,v 1.2 2004-12-26 17:11:16 rurban Exp $');
3 /* Copyright (C) 2004 ReiniUrban
4  * This file is part of PhpWiki. Terms and Conditions see LICENSE. (GPL2)
5  */
6
7 /** 
8  * The PassUser name gets created automatically. 
9  * That's why this class is empty, but must exist.
10  */
11 class _ForbiddenPassUser
12 extends _ForbiddenUser
13 {
14     function dummy() {
15         return;
16     }
17 }
18
19 // $Log: not supported by cvs2svn $
20 // Revision 1.1  2004/11/05 18:11:38  rurban
21 // required dummy file
22 //
23
24 // Local Variables:
25 // mode: php
26 // tab-width: 8
27 // c-basic-offset: 4
28 // c-hanging-comment-ender-p: nil
29 // indent-tabs-mode: nil
30 // End:
31 ?>