Changeset 332
- Timestamp:
- 05/11/06 06:48:46 (3 years ago)
- Files:
-
- devel/profile/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/profile/index.php
r302 r332 15 15 $profile_id = optional_param('profile_id', -1, PARAM_INT); 16 16 } 17 // and the page_owner naturally 18 $page_owner = $profile_id; 17 19 18 20 define("context", "profile"); 19 21 templates_page_setup(); 22 20 23 // init library 21 24 $profile = new ElggProfile($profile_id); 22 25 23 // $title = $profile->display_name(); 24 $title = run("profile:display:name"); 25 26 $body = run("content:profile:view"); 27 $body .= $profile->view(); 28 26 $title = $profile->display_name(); 27 $body .= $profile->view(); 29 28 $body = templates_draw( array( 30 29 'context' => 'contentholder',
