Changeset 10 for devel/_userdetails
- Timestamp:
- 11/30/05 20:12:22 (3 years ago)
- Files:
-
- devel/_userdetails/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/_userdetails/index.php
r8 r10 8 8 run("profile:init"); 9 9 run("userdetails:init"); 10 11 if (isset($_REQUEST['context'])) { 12 define("context", $_REQUEST['context']); 13 } else { 14 define("context", "account"); 15 } 10 16 11 17 protect(1); 12 18 13 $title = run("profile:display:name") . " :: Edit details";19 $title = run("profile:display:name") . " :: ". gettext("Edit user details"); 14 20 15 21 $body = run("templates:draw", array( 16 'context' => ' infobox',17 ' name' => $title,18 ' contents' => run("userdetails:edit")22 'context' => 'contentholder', 23 'title' => $title, 24 'body' => run("userdetails:edit") 19 25 ) 20 26 );
