|
Revision 45, 0.5 kB
(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("search:init"); |
|---|
| 9 |
run("profile:init"); |
|---|
| 10 |
|
|---|
| 11 |
global $page_owner; |
|---|
| 12 |
|
|---|
| 13 |
$title = run("users:display:name", $page_owner) . " :: " . gettext("Tags"); |
|---|
| 14 |
|
|---|
| 15 |
$body = run("content:tags"); |
|---|
| 16 |
$body .= run("search:tags:personal:display"); |
|---|
| 17 |
|
|---|
| 18 |
$body = run("templates:draw", array( |
|---|
| 19 |
'context' => 'contentholder', |
|---|
| 20 |
'title' => $title, |
|---|
| 21 |
'body' => $body |
|---|
| 22 |
) |
|---|
| 23 |
); |
|---|
| 24 |
|
|---|
| 25 |
echo run("templates:draw:page", array( |
|---|
| 26 |
$title, $body |
|---|
| 27 |
) |
|---|
| 28 |
); |
|---|
| 29 |
|
|---|
| 30 |
?> |
|---|