mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-04-29 18:59:21 +02:00
Fix #478 characterprofile message for pending deletions
This commit is contained in:
parent
0cf1f0fb46
commit
0d15f5ddb9
@ -83,6 +83,13 @@ if (isset($_GET['name']) === true && empty($_GET['name']) === false) {
|
||||
<td>Position</td>
|
||||
<td><?php echo $position; ?></td>
|
||||
</tr>
|
||||
<?php endif;
|
||||
// pending deletion?
|
||||
$deletion_time = mysql_select_single("SELECT `time` FROM `znote_deleted_characters` WHERE `character_name`='{$name}' AND `done` = '0' LIMIT 1;");
|
||||
if ($deletion_time !== false): ?>
|
||||
<tr>
|
||||
<td colspan="2" style="color: red;">Flagged for deletion by owner after <?php echo $deletion_time['time']; ?>.</td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
<!-- Player male / female -->
|
||||
<tr>
|
||||
|
Loading…
x
Reference in New Issue
Block a user