root/releases/0.401/profile/edit.php

Revision 45, 0.6 kB (checked in by sven, 3 years ago)

dos2unix to clean line endings, set svn property eol-style native, some whitespace homogenisation

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     //    ELGG profile edit page
4
5     // Run includes
6         require("../includes.php");
7         
8         run("profile:init");
9         define("context", "profile");
10         
11         protect(1);
12
13         global $page_owner;
14         
15         $title = run("users:display:name", $page_owner) . " :: ". gettext("Edit profile") ."";
16         
17         $body = run("content:profile:edit");
18         $body .= run("profile:edit");
19         
20         $body = run("templates:draw", array(
21                         'context' => 'contentholder',
22                         'title' => $title,
23                         'body' => $body
24                     )
25                     );
26                     
27         echo run("templates:draw:page", array(
28                     $title, $body
29                 )
30                 );
31
32 ?>
Note: See TracBrowser for help on using the browser.