Fixing a small css issue in the user class.
[elgg.git] / _invite / register.php
blob985940da6a9abb266c0b0191cb58f75dde911ae8
1 <?php
3 // ELGG join-with-no-invite page
5 // Run includes
6 define("context","external");
7 require_once(dirname(dirname(__FILE__))."/includes.php");
9 run("invite:init");
10 templates_page_setup();
11 $title = sprintf(__gettext("Join %s"), sitename);
13 $body = run("content:invite:join");
14 $body .= run("join:no_invite");
16 $body = templates_draw(array(
17 'context' => 'contentholder',
18 'title' => $title,
19 'body' => $body
23 echo templates_page_draw( array(
24 $title, $body