mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #3045 from Elsensee/ticket/13186
[ticket/13186] Don't show link on post count when search disabled
This commit is contained in:
commit
ec5729a99f
1 changed files with 1 additions and 1 deletions
|
@ -1248,7 +1248,7 @@ while ($row = $db->sql_fetchrow($result))
|
||||||
|
|
||||||
'online' => false,
|
'online' => false,
|
||||||
'jabber' => ($row['user_jabber'] && $auth->acl_get('u_sendim')) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=contact&action=jabber&u=$poster_id") : '',
|
'jabber' => ($row['user_jabber'] && $auth->acl_get('u_sendim')) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=contact&action=jabber&u=$poster_id") : '',
|
||||||
'search' => ($auth->acl_get('u_search')) ? append_sid("{$phpbb_root_path}search.$phpEx", "author_id=$poster_id&sr=posts") : '',
|
'search' => ($config['load_search'] && $auth->acl_get('u_search')) ? append_sid("{$phpbb_root_path}search.$phpEx", "author_id=$poster_id&sr=posts") : '',
|
||||||
|
|
||||||
'author_full' => get_username_string('full', $poster_id, $row['username'], $row['user_colour']),
|
'author_full' => get_username_string('full', $poster_id, $row['username'], $row['user_colour']),
|
||||||
'author_colour' => get_username_string('colour', $poster_id, $row['username'], $row['user_colour']),
|
'author_colour' => get_username_string('colour', $poster_id, $row['username'], $row['user_colour']),
|
||||||
|
|
Loading…
Add table
Reference in a new issue