|
Revision 296, 0.7 kB
(checked in by carmartin, 3 years ago)
|
Includes should use full path given that we know where things are. Patch 1.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
require_once(dirname(dirname(__FILE__))."/includes.php"); |
|---|
| 5 |
templates_page_setup(); |
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
echo templates_page_draw( array( |
|---|
| 9 |
sprintf(gettext("Running Your Own %s"),sitename), |
|---|
| 10 |
templates_draw(array( |
|---|
| 11 |
'contents' => run("content:run_your_own"), |
|---|
| 12 |
'name' => sprintf(gettext("Running Your Own %s"), sitename), |
|---|
| 13 |
'context' => 'infobox' |
|---|
| 14 |
) |
|---|
| 15 |
) |
|---|
| 16 |
) |
|---|
| 17 |
); |
|---|
| 18 |
|
|---|
| 19 |
?> |
|---|