Format output for the proper code syntax, this should fix many various issues with output formatting and page breakage

This commit is contained in:
johnnyq
2022-12-02 19:58:21 -05:00
parent 3067e6bd1e
commit b6e540825f
128 changed files with 1222 additions and 1227 deletions

View File

@@ -27,7 +27,7 @@
<?php }else{ ?>
<img src="<?php echo "uploads/users/$session_user_id/$session_avatar"; ?>" class="user-image img-circle">
<?php } ?>
<span class="d-none d-md-inline"><?php echo $session_name; ?></span>
<span class="d-none d-md-inline"><?php echo htmlentities($session_name); ?></span>
</a>
<ul class="dropdown-menu dropdown-menu-lg dropdown-menu-right">
<!-- User image -->
@@ -39,8 +39,8 @@
<img src="<?php echo "uploads/users/$session_user_id/$session_avatar"; ?>" class="img-circle">
<?php } ?>
<p>
<?php echo $session_name; ?>
<small><?php echo $session_user_role_display; ?></small>
<?php echo htmlentities($session_name); ?>
<small><?php echo htmlentities($session_user_role_display); ?></small>
</p>
</li>
<!-- Menu Footer-->