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/profile/edit.php

    r8 r10  
    77                 
    88                run("profile:init"); 
    9                                  
     9                define("context", "profile"); 
     10                 
    1011                protect(1); 
    1112 
    1213                global $page_owner; 
    1314                 
    14                 $title = run("users:display:name", $page_owner) . " :: Edit profile"; 
     15                $title = run("users:display:name", $page_owner) . " :: ". gettext("Edit profile") .""; 
    1516                 
    1617                $body = run("content:profile:edit"); 
     
    1819                 
    1920                $body = run("templates:draw", array( 
    20                                                 'context' => 'infobox', 
    21                                                 'name' => $title, 
    22                                                 'contents' => $body 
     21                                                'context' => 'contentholder', 
     22                                                'title' => $title, 
     23                                                'body' => $body 
    2324                                        ) 
    2425                                        );