|
Revision 1387, 443 bytes
(checked in by rho, 1 year ago)
|
minor cleanup code
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
require_once(dirname(dirname(__FILE__))."/../includes.php"); |
|---|
| 7 |
|
|---|
| 8 |
run("profile:init"); |
|---|
| 9 |
run("userdetails:init"); |
|---|
| 10 |
|
|---|
| 11 |
$context = optional_param('context','account'); |
|---|
| 12 |
define('context',$context); |
|---|
| 13 |
|
|---|
| 14 |
require_login(); |
|---|
| 15 |
|
|---|
| 16 |
templates_page_setup(); |
|---|
| 17 |
|
|---|
| 18 |
$title = run("profile:display:name") . " :: ". __gettext("Edit user details"); |
|---|
| 19 |
$body = run('userdetails:edit'); |
|---|
| 20 |
|
|---|
| 21 |
templates_page_output($title, $body); |
|---|
| 22 |
|
|---|
| 23 |
?> |
|---|