From 1cc882825ee74b2609ff66ed9f6117c24b2a6e25 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 11 Mar 2007 22:56:20 +0000 Subject: [PATCH] r1444: In all other instances for sorting, the sortby key for reporter is reporter, not userid, so have includes/premissions (and thereby $bugsys->columns and $bugsys->columnNames) reflect that --- includes/permissions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/permissions.php b/includes/permissions.php index a768804..ea4caa0 100644 --- a/includes/permissions.php +++ b/includes/permissions.php @@ -74,7 +74,7 @@ $bugsys->emailoptions = array( $bugsys->columns = array( 'bugid' => 1, 'summary' => 2, - 'userid' => 4, + 'reporter' => 4, 'product' => 8, 'component' => 16, 'version' => 32, @@ -89,7 +89,7 @@ $bugsys->columns = array( $bugsys->columnNames = array( 'bugid' => _('ID'), 'summary' => _('Summary'), - 'userid' => _('Reporter'), + 'reporter' => _('Reporter'), 'product' => _('Product'), 'component' => _('Component'), 'version' => _('Version'), -- 2.22.5