|
Revision 45, 440 bytes
(checked in by sven, 3 years ago)
|
dos2unix to clean line endings, set svn property eol-style native, some whitespace homogenisation
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
// Run includes |
|---|
| 6 |
require("../includes.php"); |
|---|
| 7 |
|
|---|
| 8 |
run("invite:init"); |
|---|
| 9 |
|
|---|
| 10 |
$title = sprintf(gettext("Get new %s password"), sitename); |
|---|
| 11 |
|
|---|
| 12 |
$body .= run("invite:password:new"); |
|---|
| 13 |
|
|---|
| 14 |
$body = run("templates:draw", array( |
|---|
| 15 |
'context' => 'contentholder', |
|---|
| 16 |
'title' => $title, |
|---|
| 17 |
'body' => $body |
|---|
| 18 |
) |
|---|
| 19 |
); |
|---|
| 20 |
|
|---|
| 21 |
echo run("templates:draw:page", array( |
|---|
| 22 |
$title, $body |
|---|
| 23 |
) |
|---|
| 24 |
); |
|---|
| 25 |
|
|---|
| 26 |
?> |
|---|