Subversion Repositories Applications.papyrus

Rev

Rev 320 | Rev 1713 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 320 Rev 1173
Line 1... Line -...
1
<?php
-
 
2
 
-
 
3
include_once('Auth.php');
-
 
4
 
-
 
5
?>
-
 
6
1
<?php
-
 
2
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4 foldmethod=marker: */
-
 
3
 
-
 
4
/**
-
 
5
 * Provide compatibility with previous Auth include location.
-
 
6
 *
-
 
7
 * PHP versions 4 and 5
-
 
8
 *
-
 
9
 * LICENSE: This source file is subject to version 3.01 of the PHP license
-
 
10
 * that is available through the world-wide-web at the following URI:
-
 
11
 * http://www.php.net/license/3_01.txt.  If you did not receive a copy of
-
 
12
 * the PHP License and are unable to obtain it through the web, please
-
 
13
 * send a note to license@php.net so we can mail you a copy immediately.
-
 
14
 *
-
 
15
 * @category   Authentication
-
 
16
 * @package    Auth
-
 
17
 * @author     Martin Jansen <mj@php.net>
-
 
18
 * @copyright  2001-2006 The PHP Group
-
 
19
 * @license    http://www.php.net/license/3_01.txt  PHP License 3.01
-
 
20
 * @version    CVS: $Id: Auth.php,v 1.2 2006-12-14 15:04:28 jp_milcent Exp $
-
 
21
 * @link       http://pear.php.net/package/Auth
-
 
22
 * @deprecated File deprecated since Release 1.2.0
-
 
23
 */
-
 
24
 
-
 
25
/**
-
 
26
 * Include Auth package
-
 
27
 */
-
 
28
require_once 'Auth.php';
-
 
29
 
-
 
30
?>
-
 
31