|
Revision 1539, 0.7 kB
(checked in by renato, 1 year ago)
|
Setting prop svn:eol-style in LOTS of files.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
//error_log("en _communities/addgroup"); |
|---|
| 5 |
// Run includes |
|---|
| 6 |
require_once(dirname(dirname(__FILE__))."/../includes.php"); |
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
run("userdetails:init"); |
|---|
| 10 |
run("profile:init"); |
|---|
| 11 |
run("friends:init"); |
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
require_login(); |
|---|
| 15 |
|
|---|
| 16 |
define("context", "network"); |
|---|
| 17 |
templates_page_setup(); |
|---|
| 18 |
|
|---|
| 19 |
$title = user_info("name", page_owner()) . " :: ". __gettext("Invite a Community"); |
|---|
| 20 |
$body = run('communities:communities', array($page_owner)); |
|---|
| 21 |
|
|---|
| 22 |
templates_page_output($title, $body); |
|---|
| 23 |
|
|---|
| 24 |
?> |
|---|