Changeset 10 for devel/_invite
- Timestamp:
- 11/30/05 20:12:22 (3 years ago)
- Files:
-
- devel/_invite/forgotten_password.php (modified) (1 diff)
- devel/_invite/index.php (modified) (2 diffs)
- devel/_invite/join.php (modified) (2 diffs)
- devel/_invite/new_password.php (modified) (1 diff)
- devel/_invite/register.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/_invite/forgotten_password.php
r6 r10 9 9 run("invite:init"); 10 10 11 $title = "Generate a New Password";11 $title = gettext("Generate a New Password"); 12 12 13 13 $body .= run("invite:password:request"); 14 14 15 15 $body = run("templates:draw", array( 16 'context' => ' infobox',17 ' name' => $title,18 ' contents' => $body16 'context' => 'contentholder', 17 'title' => $title, 18 'body' => $body 19 19 ) 20 20 ); devel/_invite/index.php
r2 r10 9 9 run("invite:init"); 10 10 11 define("context", "network"); 12 11 13 // You must be logged on to view this! 12 14 if (logged_on) { 13 15 14 $title = "Invite a Friend";16 $title = gettext("Invite a Friend"); 15 17 16 18 $body = run("content:invite:invite"); … … 18 20 19 21 $body = run("templates:draw", array( 20 'context' => ' infobox',21 ' name' => $title,22 ' contents' => $body22 'context' => 'contentholder', 23 'title' => $title, 24 'body' => $body 23 25 ) 24 26 ); devel/_invite/join.php
r2 r10 8 8 run("invite:init"); 9 9 10 $title = "Join Elgg";10 $title = sprintf(gettext("Join %s"),sitename); 11 11 12 12 $body = run("content:invite:join"); … … 14 14 15 15 $body = run("templates:draw", array( 16 'context' => ' infobox',17 ' name' => $title,18 ' contents' => $body16 'context' => 'contentholder', 17 'title' => $title, 18 'body' => $body 19 19 ) 20 20 ); devel/_invite/new_password.php
r6 r10 8 8 run("invite:init"); 9 9 10 $title = "Get new " . sitename . " password";10 $title = sprintf(gettext("Get new %s password"), sitename); 11 11 12 12 $body .= run("invite:password:new"); 13 13 14 14 $body = run("templates:draw", array( 15 'context' => ' infobox',16 ' name' => $title,17 ' contents' => $body15 'context' => 'contentholder', 16 'title' => $title, 17 'body' => $body 18 18 ) 19 19 ); devel/_invite/register.php
r2 r10 8 8 run("invite:init"); 9 9 10 $title = "Join " . sitename;10 $title = sprintf(gettext("Join %s"), sitename); 11 11 12 12 $body = run("content:invite:join"); … … 14 14 15 15 $body = run("templates:draw", array( 16 'context' => ' infobox',17 ' name' => $title,18 ' contents' => $body16 'context' => 'contentholder', 17 'title' => $title, 18 'body' => $body 19 19 ) 20 20 );
