-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Third batch of module tmpl codestyle #17855
Conversation
modules/mod_menu/tmpl/default.php
Outdated
<?php endif; ?> | ||
<?php // The next item is deeper. ?> | ||
<?php if ($item->deeper) : ?> | ||
<?php echo '<ul class="nav-child unstyled small">'; ?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use HTML only
modules/mod_menu/tmpl/default.php
Outdated
<?php echo '<ul class="nav-child unstyled small">'; ?> | ||
<?php elseif ($item->shallower) : ?> | ||
<?php // The next item is shallower. ?> | ||
<?php echo '</li>'; ?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use HTML only
modules/mod_menu/tmpl/default.php
Outdated
<?php echo str_repeat('</ul></li>', $item->level_diff); ?> | ||
<?php else : ?> | ||
<?php // The next item is on the same level. ?> | ||
<?php echo '</li>'; ?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use HTML only
I have tested this item ✅ successfully on 90aef02 This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/17855. |
can we have a second review & merged here? |
Summary of Changes
Third batch of module tmpl codestyle
Testing Instructions
Please test and review the following frontend modules using the testing sampledata
Expected result
Still works
Actual result
Works with codestyle problems
Documentation Changes Required
none