This commit is contained in:
2025-03-31 12:06:01 -06:00
parent 5125612c05
commit f4f5077210
3 changed files with 24 additions and 6 deletions
+5 -5
View File
@@ -49,7 +49,7 @@ function admin_article_view()
<table>
<thead>
<tr>
<th>Select</th>
<th class="">Select</th>
<th>Article ID</th>
<th>Author</th>
<th>Title</th>
@@ -67,8 +67,8 @@ function admin_article_view()
foreach ($results as $key => $result) {
$display .= '
<tr>
<td>
<tr data-href="articles.php?action=view&article_id=' . $result['article_id'] . '">
<td class="excluded_cell">
<label class="form_checkbox_container">
<input name="selected_articles[]" value="' . $result['article_id'] . '" type="checkbox">
<span class="checkmark"></span>
@@ -139,8 +139,8 @@ function admin_user_view()
foreach ($results as $key => $result) {
$display .= '
<tr>
<td>
<tr data-href="user.php?action=view&user_id=' . $result['user_id'] . '">
<td class="excluded_cell">
<label class="form_checkbox_container">
<input name="selected_users[]" value="' . $result['user_id'] . '" type="checkbox">
<span class="checkmark"></span>