includes/pageprocess.php
changeset 315 f49e3c8b638c
parent 312 6c7060d36a23
child 320 112debff64bd
--- a/includes/pageprocess.php	Mon Dec 03 18:45:37 2007 -0500
+++ b/includes/pageprocess.php	Tue Dec 11 19:15:26 2007 -0500
@@ -807,7 +807,13 @@
     
     echo '</div>';
     echo '</td></tr>';
-            
+    
+    $code = $plugins->setHook('userpage_sidebar_left');
+    foreach ( $code as $cmd )
+    {
+      eval($cmd);
+    }
+    
     echo '  </table>
           </div>';
     
@@ -923,6 +929,12 @@
       echo '<tr><td class="'.$class.'">' . htmlspecialchars($target_username) . ' hasn\'t posted any real-life contact information.</td></tr>';
     }
     
+    $code = $plugins->setHook('userpage_sidebar_right');
+    foreach ( $code as $cmd )
+    {
+      eval($cmd);
+    }
+    
     echo '  </table>
           </div>';