root/releases/0.6/_invite/new_password.php

Revision 296, 0.7 kB (checked in by carmartin, 3 years ago)

Includes should use full path given that we know where things are. Patch 1.

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     //    ELGG get new password page
4
5     // Run includes
6         require_once(dirname(dirname(__FILE__))."/includes.php");
7         
8         run("invite:init");
9         templates_page_setup();               
10         $title = sprintf(gettext("Get new %s password"), sitename);
11         
12         $body = run("invite:password:new");
13         
14         $body .= templates_draw(array(
15                         'context' => 'contentholder',
16                         'title' => $title,
17                         'body' => $body
18                     )
19                     );
20         
21         echo templates_page_draw( array(
22                         $title, $body
23                     )
24                     );
25
26 ?>
Note: See TracBrowser for help on using the browser.