Alex 10 місяців тому
батько
коміт
68eabcbd32
1 змінених файлів з 5 додано та 3 видалено
  1. 5 3
      message_queue.php

+ 5 - 3
message_queue.php

@@ -17,7 +17,7 @@
 
 	The Initial Developer of the Original Code is
 	Mark J Crane <[email protected]>
-	Portions created by the Initial Developer are Copyright (C) 2023
+	Portions created by the Initial Developer are Copyright (C) 2024
 	the Initial Developer. All Rights Reserved.
 
 	Contributor(s):
@@ -148,7 +148,7 @@
 
 //show the content
 	echo "<div class='action_bar' id='action_bar'>\n";
-	echo "	<div class='heading'><b>".$text['title-message_log']." (".$num_rows.")</b></div>\n";
+	echo "	<div class='heading'><b>".$text['title-message_log']."</b><div class='count'>".number_format($num_rows)."</div></div>\n";
 	echo "	<div class='actions'>\n";
 	echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'id'=>'btn_back','link'=>'messages.php']);
 	if (permission_exists('message_delete') && $messages) {
@@ -182,6 +182,7 @@
 	echo "<input type='hidden' id='action' name='action' value=''>\n";
 	echo "<input type='hidden' name='search' value=\"".escape($search)."\">\n";
 
+	echo "<div class='card'>\n";
 	echo "<table class='list'>\n";
 	echo "<tr class='list-header'>\n";
 	if (permission_exists('message_delete')) {
@@ -251,6 +252,7 @@
 	}
 
 	echo "</table>\n";
+	echo "</div>\n";
 	echo "<br />\n";
 	echo "<div align='center'>".$paging_controls."</div>\n";
 	echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
@@ -259,4 +261,4 @@
 //include the footer
 	require_once "resources/footer.php";
 
-?>
+?>