?>
   <div class="profile-heading">
     <h3>
       <?php 
 echo htmlspecialchars($this_user->getFullName());
 ?>
     </h3>
     <p class="details">
       <?php 
 echo $this_user->getMemberNumber();
 ?>
       <?php 
 if ($this_user->firstTransaction() != null) {
     echo ' joined in ' . $this_user->firstTransaction();
 }
 if ($user_profile->getAllowDoorbot() && $this_user->getDoorbotTimestamp() != '') {
     echo ', last seen ' . date('dS M Y', strtotime($this_user->getDoorbotTimestamp()));
 }
 ?>
     </p>
   </div>
   <div class="profile-body">
     <?php 
 require 'profile/aliases.php';
 ?>
     <?php 
 if ($user_profile->getDescription() != '') {
     ?>
       <h4>Projects I'm working on</h4>
       <p><?php 
     echo nl2br(stripslashes($user_profile->getDescription()));