Changeset 10 for devel/_invite

Show
Ignore:
Timestamp:
11/30/05 20:12:22 (3 years ago)
Author:
sven
Message:

importing elgg-0.301

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/_invite/forgotten_password.php

    r6 r10  
    99                run("invite:init"); 
    1010                 
    11                 $title = "Generate a New Password"
     11                $title = gettext("Generate a New Password")
    1212                 
    1313                $body .= run("invite:password:request"); 
    1414                 
    1515                $body = run("templates:draw", array( 
    16                                                 'context' => 'infobox', 
    17                                                 'name' => $title, 
    18                                                 'contents' => $body 
     16                                                'context' => 'contentholder', 
     17                                                'title' => $title, 
     18                                                'body' => $body 
    1919                                        ) 
    2020                                        ); 
  • devel/_invite/index.php

    r2 r10  
    99                run("invite:init"); 
    1010                 
     11                define("context", "network"); 
     12                 
    1113        // You must be logged on to view this! 
    1214                if (logged_on) { 
    1315                 
    14                 $title = "Invite a Friend"
     16                $title = gettext("Invite a Friend")
    1517                 
    1618                $body = run("content:invite:invite"); 
     
    1820                 
    1921                $body = run("templates:draw", array( 
    20                                                 'context' => 'infobox', 
    21                                                 'name' => $title, 
    22                                                 'contents' => $body 
     22                                                'context' => 'contentholder', 
     23                                                'title' => $title, 
     24                                                'body' => $body 
    2325                                        ) 
    2426                                        ); 
  • devel/_invite/join.php

    r2 r10  
    88                run("invite:init"); 
    99                 
    10                 $title = "Join Elgg"
     10                $title = sprintf(gettext("Join %s"),sitename)
    1111                 
    1212                $body = run("content:invite:join"); 
     
    1414                 
    1515                $body = run("templates:draw", array( 
    16                                                 'context' => 'infobox', 
    17                                                 'name' => $title, 
    18                                                 'contents' => $body 
     16                                                'context' => 'contentholder', 
     17                                                'title' => $title, 
     18                                                'body' => $body 
    1919                                        ) 
    2020                                        ); 
  • devel/_invite/new_password.php

    r6 r10  
    88                run("invite:init"); 
    99                 
    10                 $title = "Get new " . sitename . " password"
     10                $title = sprintf(gettext("Get new %s password"), sitename)
    1111                 
    1212                $body .= run("invite:password:new"); 
    1313                 
    1414                $body = run("templates:draw", array( 
    15                                                 'context' => 'infobox', 
    16                                                 'name' => $title, 
    17                                                 'contents' => $body 
     15                                                'context' => 'contentholder', 
     16                                                'title' => $title, 
     17                                                'body' => $body 
    1818                                        ) 
    1919                                        ); 
  • devel/_invite/register.php

    r2 r10  
    88                run("invite:init"); 
    99                 
    10                 $title = "Join " . sitename
     10                $title = sprintf(gettext("Join %s"), sitename)
    1111                 
    1212                $body = run("content:invite:join"); 
     
    1414                 
    1515                $body = run("templates:draw", array( 
    16                                                 'context' => 'infobox', 
    17                                                 'name' => $title, 
    18                                                 'contents' => $body 
     16                                                'context' => 'contentholder', 
     17                                                'title' => $title, 
     18                                                'body' => $body 
    1919                                        ) 
    2020                                        );