|
Revision 45, 0.6 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 |
|
|---|
| 9 |
run("userdetails:init"); |
|---|
| 10 |
run("profile:init"); |
|---|
| 11 |
run("friends:init"); |
|---|
| 12 |
|
|---|
| 13 |
define("context", "network"); |
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
global $page_owner; |
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
// protect(1); |
|---|
| 20 |
|
|---|
| 21 |
$title = run("profile:display:name") . " :: " . gettext("Communities"); |
|---|
| 22 |
|
|---|
| 23 |
echo run("templates:draw:page", array( |
|---|
| 24 |
$title, run("communities:editpage") |
|---|
| 25 |
) |
|---|
| 26 |
); |
|---|
| 27 |
|
|---|
| 28 |
?> |
|---|