|
Revision 45, 428 bytes
(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 |
if (context == "network" && logged_on) { |
|---|
| 4 |
|
|---|
| 5 |
$run_result .= run("templates:draw", array( |
|---|
| 6 |
'context' => 'submenuitem', |
|---|
| 7 |
'name' => gettext("Invite a friend"), |
|---|
| 8 |
'location' => url . '_invite/' |
|---|
| 9 |
) |
|---|
| 10 |
); |
|---|
| 11 |
|
|---|
| 12 |
$run_result .= run("templates:draw", array( |
|---|
| 13 |
'context' => 'submenuitem', |
|---|
| 14 |
'name' => gettext("Page help"), |
|---|
| 15 |
'location' => url . 'help/network_help.php' |
|---|
| 16 |
) |
|---|
| 17 |
); |
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
} |
|---|
| 21 |
|
|---|
| 22 |
?> |
|---|