|
Revision 1369, 473 bytes
(checked in by rho, 1 year ago)
|
cleanup
- use to templates_page_output function to display page
Signed-off: Rolando Espinoza La fuente <rho@prosoftpeople.com>
|
- Property svn:mime-type set to
text/plain
|
| 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, null, ' '); |
|---|
| 19 |
|
|---|
| 20 |
?> |
|---|