diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-06-05 11:09:40 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-06-05 11:09:40 +0000 |
commit | 9a5338f565e600e618cc4546abbf18d30d942b3a (patch) | |
tree | e5eca4149e71ce3a204de2070cf78a9f9e0bfd6a /h-source/Application/Views/differences.php | |
parent | 310356e1c7777c0e421af7c744a44827c4869a5e (diff) |
improved the way deleted devices are managed
Diffstat (limited to 'h-source/Application/Views/differences.php')
-rw-r--r-- | h-source/Application/Views/differences.php | 38 |
1 files changed, 21 insertions, 17 deletions
diff --git a/h-source/Application/Views/differences.php b/h-source/Application/Views/differences.php index 3ec5235..b3bb292 100644 --- a/h-source/Application/Views/differences.php +++ b/h-source/Application/Views/differences.php @@ -21,25 +21,29 @@ ?> <div class="notebooks_viewall"> - - <div class="diff_color_notice"> - <b>Notice</b>: the text in <del>red</del> has been deleted from the previous revision, the text in <ins>green</ins> has been added in this revision and the text in <span class="gray_text_notice">gray</span> has not been changed. - </div> + + <?php if (!$isDeleted) { ?> - <?php foreach ($diffArray as $label => $text) { ?> - - <div class="diff_ext_box"> - - <div class="diff_item_label"> - <?php echo gtext("differences in the entry");?>: <b><?php echo $label;?></b> + <div class="diff_color_notice"> + <b>Notice</b>: the text in <del>red</del> has been deleted from the previous revision, the text in <ins>green</ins> has been added in this revision and the text in <span class="gray_text_notice">gray</span> has not been changed. </div> - - <div class="diff_item_text"> - <?php echo in_array($label,$fieldsWithBreaks) ? nl2br($text) : $text;?> + + <?php foreach ($diffArray as $label => $text) { ?> + + <div class="diff_ext_box"> + + <div class="diff_item_label"> + <?php echo gtext("differences in the entry");?>: <b><?php echo $label;?></b> + </div> + + <div class="diff_item_text"> + <?php echo in_array($label,$fieldsWithBreaks) ? nl2br($text) : $text;?> + </div> + </div> - - </div> - + + <?php } ?> + <?php } ?> - + </div> |