diff -r dd659f6ba891 -r dd2edcdc6c03 includes/pageprocess.php --- a/includes/pageprocess.php Wed Jun 27 00:59:42 2007 -0400 +++ b/includes/pageprocess.php Wed Jun 27 12:09:02 2007 -0400 @@ -752,6 +752,12 @@ echo 'Enjoys: ' . htmlspecialchars($userdata['user_hobbies']) . ''; } + if ( empty($userdata['user_location']) && empty($userdata['user_job']) && empty($userdata['user_hobbies']) ) + { + $class = ( $class == 'row1' ) ? 'row3' : 'row1'; + echo '' . htmlspecialchars($target_username) . ' hasn\'t posted any real-life contact information.'; + } + echo ' '; @@ -865,7 +871,7 @@ if ( $db->numrows() > 0 ) { $r = $db->fetchrow(); - echo '

This page also appears to have some log entries in the database - it seems that it was deleted on ' . $r['date_string'] . '. You can probably roll back the deletion.

'; + echo '

This page was deleted on ' . $r['date_string'] . '. The stated reason was:

' . $r['edit_summary'] . '

You can probably roll back the deletion.

'; } $db->free_result(); }