diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2010-11-01 20:42:44 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2010-11-01 20:42:44 +0000 |
commit | 049e37619a1ea7de4eed2695139645d6d6b9f397 (patch) | |
tree | aac510dfdcc9e771cd3448cc0f45e7a6fdfc0665 /h-source/Application/Views/History/viewall.php | |
parent | b006de42300a5671544e6fd3ea20ae7ce96da933 (diff) |
moderators can now block/unblock users - part 1
Diffstat (limited to 'h-source/Application/Views/History/viewall.php')
-rw-r--r-- | h-source/Application/Views/History/viewall.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/h-source/Application/Views/History/viewall.php b/h-source/Application/Views/History/viewall.php index 948a63d..9dc27c6 100644 --- a/h-source/Application/Views/History/viewall.php +++ b/h-source/Application/Views/History/viewall.php @@ -26,15 +26,15 @@ foreach ($res as $row) { $mess_count++; ?> -<div class="details_of_actions_inner"> - <div class="talk_message_item_date">this message has been <?php echo $md_action[$row['history']['action']];?> by <?php echo getLinkToUser($u->getUser($row['history']['created_by']));?> at <?php echo smartDate($row['history']['creation_date']);?> with the following motivation: +<div class="<?php echo $box_class;?>"> + <div class="talk_message_item_date">this <?php echo $object;?> has been <?php echo $md_action[$row['history']['action']];?> by <?php echo getLinkToUser($u->getUser($row['history']['created_by']));?> at <?php echo smartDate($row['history']['creation_date']);?> with the following motivation: </div> - <div class="deleted_message_show"><?php echo$row['history']['message'];?></div> + <div class="deleted_message_show"><?php echo $row['history']['message'];?></div> </div> <?php } ?> <?php if ($mess_count === 0) { ?> - <div class="details_of_actions_inner"> + <div class="<?php echo $box_class;?>"> there are no details.. </div> <?php } ?>
\ No newline at end of file |