diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:46:48 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:46:48 -0300 |
commit | 5041c6c48153453ed597206d08eeff37cf20e676 (patch) | |
tree | b25f495baf01202485f05b5245625f28558c6135 /pages/credits.php | |
download | elgg-5041c6c48153453ed597206d08eeff37cf20e676.tar.gz elgg-5041c6c48153453ed597206d08eeff37cf20e676.tar.bz2 |
Squashed 'mod/cool_theme/' content from commit a26f7df
git-subtree-dir: mod/cool_theme
git-subtree-split: a26f7df43a266f7d1ff04847da330d15f6041e9b
Diffstat (limited to 'pages/credits.php')
-rw-r--r-- | pages/credits.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pages/credits.php b/pages/credits.php new file mode 100644 index 000000000..507211f0e --- /dev/null +++ b/pages/credits.php @@ -0,0 +1,15 @@ +<?php +gatekeeper(); + +$user = elgg_get_logged_in_user_entity(); + +elgg_set_page_owner_guid($user->guid); + +$title = elgg_echo('thanks'); +elgg_set_page_owner_guid(1); +$content = elgg_view_layout('two_sidebar', array( + 'title' => $title, + 'content' => elgg_echo('thanks_body'), +)); + +echo elgg_view_page($title, $content);
\ No newline at end of file |