mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-03 08:22:24 +02:00
feature 2060: Remove adviser mode.
First commit: only php files. git-svn-id: http://piwigo.org/svn/trunk@8126 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -30,8 +30,6 @@ $refresh_main = false;
|
||||
|
||||
if ( isset($_GET['view_as']) )
|
||||
{
|
||||
if ( is_adviser() and $user['id']!=$_GET['view_as'] and $conf['guest_id']!=$_GET['view_as'])
|
||||
die('security error');
|
||||
if ($user['id']===$_GET['view_as'])
|
||||
pwg_unset_session_var( 'multiview_as' );
|
||||
else
|
||||
@@ -111,14 +109,7 @@ $my_url = get_root_url().'plugins/'.basename(dirname(__FILE__)).'/'.basename(__F
|
||||
// | users |
|
||||
$query = '
|
||||
SELECT '.$conf['user_fields']['id'].' AS id,'.$conf['user_fields']['username'].' AS username
|
||||
FROM '.USERS_TABLE;
|
||||
if (is_adviser())
|
||||
{
|
||||
$query .='
|
||||
WHERE '.$conf['user_fields']['id']. ' IN ('.$user['id'].','.$conf['guest_id'].')
|
||||
';
|
||||
}
|
||||
$query .='
|
||||
FROM '.USERS_TABLE.'
|
||||
ORDER BY CONVERT('.$conf['user_fields']['username'].',CHAR)
|
||||
;';
|
||||
$user_map = simple_hash_from_query($query, 'id', 'username');
|
||||
|
||||
Reference in New Issue
Block a user