09-02-2017, 05:49 PM
Found an error on admin_users.php (same issue on admin_user.php as well). Line 294 points to an incorrect folder for the JS file:
should be
and similar with search.js a few lines below. This should fix a location error if your UserSpice isn't your root directory.
The admin_user.php parse error is on lines 504 and 505, is used when it should be .
For the notifications, if you put the icon in the span it will only display when you have a new notification and you'll be unable to click the icon to view already read notifications.
Code:
<script src="scripts/jwerty.js"></script>
Code:
<script src="<?= $us_url_root; ?>users/js/jwerty.js"></script>
The admin_user.php parse error is on lines 504 and 505,
Code:
<?
Code:
<?php
For the notifications, if you put the icon in the span it will only display when you have a new notification and you'll be unable to click the icon to view already read notifications.