diff options
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> |