Skip to content

Commit

Permalink
! quick search in mod/admin log did not allow group/postion
Browse files Browse the repository at this point in the history
Signed-off-by: Spuds <spuds@spudsdesign.com>
  • Loading branch information
Spuds committed Jun 21, 2014
1 parent 3b1cc50 commit afb7c9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/admin/Modlog.controller.php
Expand Up @@ -96,7 +96,7 @@ public function action_log()
'action' => 'lm.action',
'time' => 'lm.log_time',
'member' => 'mem.real_name',
'group' => 'mg.group_name',
'position' => 'mg.group_name',
'ip' => 'lm.ip',
);

Expand All @@ -114,7 +114,7 @@ public function action_log()
$searchTypes = array(
'action' => array('sql' => 'lm.action', 'label' => $txt['modlog_action']),
'member' => array('sql' => 'mem.real_name', 'label' => $txt['modlog_member']),
'group' => array('sql' => 'mg.group_name', 'label' => $txt['modlog_position']),
'position' => array('sql' => 'mg.group_name', 'label' => $txt['modlog_position']),
'ip' => array('sql' => 'lm.ip', 'label' => $txt['modlog_ip'])
);

Expand Down

0 comments on commit afb7c9a

Please sign in to comment.