|
Revision 1387, 0.5 kB
(checked in by rho, 1 year ago)
|
minor cleanup code
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
// Run includes |
|---|
| 6 |
require_once(dirname(dirname(__FILE__))."/../includes.php"); |
|---|
| 7 |
|
|---|
| 8 |
require_login(); |
|---|
| 9 |
|
|---|
| 10 |
run("profile:init"); |
|---|
| 11 |
templates_actions(); |
|---|
| 12 |
|
|---|
| 13 |
define("context", "account"); |
|---|
| 14 |
templates_page_setup(); |
|---|
| 15 |
$title = run("profile:display:name") . " :: ". __gettext("Select / Create Themes"); |
|---|
| 16 |
|
|---|
| 17 |
$body = templates_view(); |
|---|
| 18 |
$body .= templates_add(); |
|---|
| 19 |
|
|---|
| 20 |
templates_page_output($title, $body); |
|---|
| 21 |
|
|---|
| 22 |
?> |
|---|