">
							<?php 
        echo clean($row['catTitle']);
        ?>
						</a>
					</td>
					<td><?php 
        echo $entryUsername;
        ?>
</td>
					<td><?php 
        echo $entryUrl;
        ?>
</td>
					<td class="text-center"><?php 
        echo shortMonthFormat($row['entryDate']);
        ?>
</td>
					<td class="text-center"><?php 
        echo $lastUpdated;
        ?>
</td>
					<td class="text-right">
						<a data-toggle="modal" href="#delEntry<?php 
        echo $row['entryId'];
        ?>
">
							<i class="fa fa-trash text-danger" data-toggle="tooltip" data-placement="left" title="<?php 
        echo $delEntryTooltip;
        ?>
"></i>
    ?>
				</li>
				<li class="list-group-item">
					<strong><?php 
    echo $accTypeText;
    ?>
</strong>: <?php 
    echo $accType;
    ?>
				</li>
				<li class="list-group-item">
					<strong><?php 
    echo $joinDateText;
    ?>
</strong>: <?php 
    echo shortMonthFormat($row['joinDate']);
    ?>
				</li>
				<li class="list-group-item">
					<strong><?php 
    echo $lastSignInText;
    ?>
</strong>: <?php 
    echo $lastVisited;
    ?>
				</li>
				<li class="list-group-item">
					<strong><?php 
    echo $lastUpdText;
    ?>
</strong>: <?php 
            $isActive = '<strong class="text-danger">' . $inactiveText . '</strong>';
        } else {
            $isActive = '<strong class="text-success">' . $activeText . '</strong>';
        }
        if ($row['recEmails'] == '0') {
            $recEmails = $noBtn;
        } else {
            $recEmails = $yesBtn;
        }
        if ($row['superUser'] == '0') {
            $accType = $userTh;
        } else {
            $accType = $adminText;
        }
        if ($row['lastVisited'] != '0000-00-00 00:00:00') {
            $lastVisited = shortMonthFormat($row['lastVisited']);
        } else {
            $lastVisited = '';
        }
        ?>
					<tr>
						<td><?php 
        echo $firstName . ' ' . $lastName;
        ?>
</td>
						<td>
							<?php 
        if ($row['userId'] != '1') {
            ?>
								<a href="index.php?page=viewUser&userId=<?php 
            echo $row['userId'];