Skip to content
Snippets Groups Projects
Commit bbe0e722 authored by Jared Hancock's avatar Jared Hancock
Browse files

Add sort icon hint to sortable help topics

parent ed0eac1f
No related branches found
No related tags found
No related merge requests found
...@@ -98,7 +98,11 @@ $topics = array_slice($topics, $pageNav->getStart(), $pageNav->getLimit()+2); ...@@ -98,7 +98,11 @@ $topics = array_slice($topics, $pageNav->getStart(), $pageNav->getLimit()+2);
<input type="checkbox" class="ckb" name="ids[]" value="<?php echo $row['topic_id']; ?>" <input type="checkbox" class="ckb" name="ids[]" value="<?php echo $row['topic_id']; ?>"
<?php echo $sel?'checked="checked"':''; ?>> <?php echo $sel?'checked="checked"':''; ?>>
</td> </td>
<td><a href="helptopics.php?id=<?php echo $row['topic_id']; ?>"><?php echo $row['name']; ?></a>&nbsp;</td> <td>
<?php if ($cfg->getTopicSortMode() == 'm') { ?>
<i class="icon-sort"></i>
<?php } ?>
<a href="helptopics.php?id=<?php echo $row['topic_id']; ?>"><?php echo $row['name']; ?></a>&nbsp;</td>
<td><?php echo $row['isactive']?'Active':'<b>Disabled</b>'; ?></td> <td><?php echo $row['isactive']?'Active':'<b>Disabled</b>'; ?></td>
<td><?php echo $row['ispublic']?'Public':'<b>Private</b>'; ?></td> <td><?php echo $row['ispublic']?'Public':'<b>Private</b>'; ?></td>
<td><?php echo $row['priority']; ?></td> <td><?php echo $row['priority']; ?></td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment