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

topic: Fix incorrect priority in listing page

parent 8ff0d12d
Branches
Tags
No related merge requests found
...@@ -105,7 +105,7 @@ $order_by = ($cfg->getTopicSortMode() == 'm') ? 'sort' : 'topic'; ...@@ -105,7 +105,7 @@ $order_by = ($cfg->getTopicSortMode() == 'm') ? 'sort' : 'topic';
$deptId = 0; $deptId = 0;
$dept = ''; $dept = '';
} }
$priority = $team->priority ?: $defaultPriority; $priority = $topic->priority ?: $defaultPriority;
?> ?>
<tr id="<?php echo $id; ?>"> <tr id="<?php echo $id; ?>">
<td width=7px> <td width=7px>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment