Changeset 1199
- Timestamp:
- 07/12/07 16:35:09 (1 year ago)
- Files:
-
- devel/profile/index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/profile/index.php
r1046 r1199 41 41 // $id_block_fields = array('gender','town','country','birth_date'); 42 42 43 43 44 // Cycle through all defined profile detail fields and display them 44 45 … … 106 107 ) 107 108 ); 108 $run_result .= '</div>'."\n".'<div class="profile_secondary">'."\n"; 109 $run_result .= '</div>'."\n"; 110 $run_result .= '<div class="profile_secondary">'."\n"; 111 109 112 $run_result .= $secondcol; 110 113 $run_result .= "</div>\n"; 111 114 $run_result .= '<div class="profile_main_bottom"></div>'."</div>\n"; 115 116 117 // Draw the user's comment wall 118 if (function_exists("commentwall_init")) { 119 $offset = optional_param('offset', 0); 120 $limit = optional_param('limit', 5); 121 $run_result .= commentwall_displayonprofile($page_owner, $limit, $offset); 122 } 112 123 113 124 $view = array();
