sync
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user