File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
arDominionB5Plugin/modules/sfRadPlugin/templates
sfRadPlugin/modules/sfRadPlugin/templates Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 100
100
<div class="titleNotes <?php echo render_b5_show_value_css_classes (); ?> ">
101
101
<ul class="<?php echo render_b5_show_list_css_classes (); ?> ">
102
102
<?php foreach ($ resource ->getNotesByTaxonomy (['taxonomyId ' => QubitTaxonomy::RAD_TITLE_NOTE_ID ]) as $ item ) { ?>
103
- <li><?php echo render_value_inline ($ item ->type ); ?> : <?php echo render_value_inline ($ item ->getContent (['cultureFallback ' => true ])); ?> </li>
103
+ <?php if (0 != count ($ item ->getContent (['cultureFallback ' => true ]))) { ?>
104
+ <li><?php echo render_value_inline ($ item ->type ); ?> : <?php echo render_value_inline ($ item ->getContent (['cultureFallback ' => true ])); ?> </li>
105
+ <?php } ?>
104
106
<?php } ?>
105
107
</ul>
106
108
</div>
Original file line number Diff line number Diff line change 86
86
<div class="titleNotes">
87
87
<ul>
88
88
<?php foreach ($ resource ->getNotesByTaxonomy (['taxonomyId ' => QubitTaxonomy::RAD_TITLE_NOTE_ID ]) as $ item ) { ?>
89
- <li><?php echo render_value_inline ($ item ->type ); ?> : <?php echo render_value_inline ($ item ->getContent (['cultureFallback ' => true ])); ?> </li>
89
+ <?php if (0 != count ($ item ->getContent (['cultureFallback ' => true ]))) { ?>
90
+ <li><?php echo render_value_inline ($ item ->type ); ?> : <?php echo render_value_inline ($ item ->getContent (['cultureFallback ' => true ])); ?> </li>
91
+ <?php } ?>
90
92
<?php } ?>
91
93
</ul>
92
94
</div>
You can’t perform that action at this time.
0 commit comments