mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-08 01:32:59 +02:00
- adviser mode: added check on admin profile page and removed 2 read-only TAG_INPUT_ENABLED
- simplified tag code in picture.php - reduced size of dark/theme.css by combining selectors with identical content git-svn-id: http://piwigo.org/svn/trunk@1827 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
+6
-2
@@ -32,14 +32,18 @@ $edit_user = build_user( $_GET['user_id'], false );
|
||||
include_once(PHPWG_ROOT_PATH.'profile.php');
|
||||
|
||||
|
||||
save_profile_from_post( $edit_user, $errors);
|
||||
$errors = array();
|
||||
if ( !is_adviser() )
|
||||
{
|
||||
save_profile_from_post( $edit_user, $errors);
|
||||
}
|
||||
|
||||
load_profile_in_template(
|
||||
get_root_url().'admin.php?page=profile&user_id='.$edit_user['id'],
|
||||
get_root_url().'admin.php?page=user_list',
|
||||
$edit_user
|
||||
);
|
||||
$page['errors'] = array_merge( $page['errors'], $errors);
|
||||
$page['errors'] = array_merge($page['errors'], $errors );
|
||||
|
||||
$template->set_filename('profile', 'admin/profile.tpl');
|
||||
$template->assign_var_from_handle('ADMIN_CONTENT', 'profile');
|
||||
|
||||
Reference in New Issue
Block a user