Fix: Once a paste is deleted, navigate to

the home page after 5 seconds; change type
of the corresponding alert to alert-success
This commit is contained in:
parthiv-m
2024-10-07 17:42:37 -04:00
parent 545ef9f64a
commit d69d29f3a9
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -490,7 +490,7 @@ if ($FILEUPLOAD) :
<?php
endif;
?>
<div id="status" role="alert" class="alert alert-info<?php echo empty($STATUS) ? ' hidden' : '' ?>">
<div id="status" role="alert" class="alert alert-<?php echo $STATUS === 'Paste was properly deleted.' ? 'success' : 'info' ?><?php echo empty($STATUS) ? ' hidden' : '' ?>">
<span class="glyphicon glyphicon-info-sign" aria-hidden="true"></span>
<?php echo I18n::encode($STATUS), PHP_EOL; ?>
</div>