File: newuser.php3

package info (click to toggle)
imp 3%3A2.2.6-5.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,476 kB
  • ctags: 766
  • sloc: php: 4,253; sh: 831; makefile: 98; perl: 50; pascal: 15
file content (52 lines) | stat: -rw-r--r-- 1,405 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php

/*
 
 File: newuser.php3
 $Author: rkrusty $
 $Revision: 2.2.2.12 $
 $Date: 2000/09/21 09:32:14 $
 
 IMP: Copyright 1999, 2000 Charles J. Hagenbuch <chuck@horde.org>
 
 You should have received a copy of the GNU Public
 License along with this package; if not, write to the
 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.
 
 */

page_open(array('sess' => 'HordeSession'));
page_close();

require '../lib/horde.lib';
require './lib/imp.lib';                   /* IMPlib is the IMP function library  */
require './config/defaults.php3';          /* Defaults configuration file         */
require './config/lang.php3';

/* Html styles configuration */
require './config/html.php3';

if (empty($language) || !valid_lang($language, '')) $language = select_lang();
require './lib/postconf.php3';
require "./locale/$language/newuser.lang";
require './locale/local/newuser.lang';
require './config/lang.php3';

/* Setup the this_client object */
$this_client = new WebClient;

error_reporting($default->error_level);      /* set error level from imp.lib   */

/* doctype */
require "$default->include_dir/doctype.inc";

/* Run through action handlers */

$title = $lang->newuser_title;
$sidebar = false;
require "$default->include_dir/generic-header.inc";
include "$default->include_dir/newuser/intro.inc";
require "$default->include_dir/generic-footer.inc";

?>