diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2010-12-05 00:27:57 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2010-12-05 00:27:57 +0000 |
commit | b037354596f218a8bb42920437f8ea358fbabc8a (patch) | |
tree | c65071de22a7d155ccdca26d1dfdf190824cb9de /h-source/Application/Views | |
parent | b64ea63443e33fc070298c0130461c834de342bc (diff) |
moderators actions list visible - part 2
Diffstat (limited to 'h-source/Application/Views')
-rw-r--r-- | h-source/Application/Views/Issues/view.php | 1 | ||||
-rw-r--r-- | h-source/Application/Views/Moderators/index.php | 2 | ||||
-rw-r--r-- | h-source/Application/Views/talk.php | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/h-source/Application/Views/Issues/view.php b/h-source/Application/Views/Issues/view.php index 906cf0d..1575d23 100644 --- a/h-source/Application/Views/Issues/view.php +++ b/h-source/Application/Views/Issues/view.php @@ -133,6 +133,7 @@ <?php } else { ?> <?php if ($ismoderator) { ?> + <a name="message-<?php echo $row['messages']['id_mes'];?>"></a> <div class="issues_message_item_hidden"> <?php echo gtext("this message has been deleted");?> diff --git a/h-source/Application/Views/Moderators/index.php b/h-source/Application/Views/Moderators/index.php index 7594695..7bbe3f3 100644 --- a/h-source/Application/Views/Moderators/index.php +++ b/h-source/Application/Views/Moderators/index.php @@ -43,7 +43,7 @@ <?php foreach ($table as $row) { ?> <tr class="listRow"> <td class="simpleText"> - <span class='textItem'><?php echo $row['history']['id_history'];?></span> + <span class='textItem'><a href="<?php echo goToModeratedItem($row['history']);?>"><?php echo $row['history']['id_history'];?></a></span> </td> <td class="simpleText"> <span class='textItem'><?php echo $u->getUser($row['history']['created_by']);?></span> diff --git a/h-source/Application/Views/talk.php b/h-source/Application/Views/talk.php index 1cb549e..c251080 100644 --- a/h-source/Application/Views/talk.php +++ b/h-source/Application/Views/talk.php @@ -71,6 +71,7 @@ <?php } else { ?> <?php if ($ismoderator) { ?> + <a name="talk-<?php echo $message['talk']['id_talk'];?>"></a> <div class="talk_message_item_hidden"> this message has been deleted |