root/devel/mod/invite/forgotten_password.php

Revision 1540, 457 bytes (checked in by renato, 10 months ago)

Setting prop svn:eol-style in another lot of files.

  • Property svn:mime-type set to text/plain
  • Property svn:eol-style set to native
Line 
1 <?php
2
3     //    ELGG generate-a-new-password page
4
5     // Run includes
6         define("context","external");
7         require_once(dirname(dirname(__FILE__))."/../includes.php");
8        
9         run("profile:init");
10         run("invite:init");
11        
12         templates_page_setup();
13
14         $title = __gettext("Generate a New Password");
15        
16         $body = run("invite:password:request");
17        
18         templates_page_output($title, $body);
19
20 ?>
Note: See TracBrowser for help on using the browser.