mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-19 16:13:00 +02:00
- bug fixed : in admin, username displayed in titles if needed even if only
user id was transmitted git-svn-id: http://piwigo.org/svn/trunk@708 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -34,7 +34,19 @@ include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php' );
|
||||
$page_valide = false;
|
||||
$title = '';
|
||||
$username='';
|
||||
if (isset($_POST['username'])) $username=$_POST['username'];
|
||||
if (isset($_POST['username']))
|
||||
{
|
||||
$username = $_POST['username'];
|
||||
}
|
||||
else if (isset($_POST['userid']))
|
||||
{
|
||||
$username = get_username($_POST['userid']);
|
||||
}
|
||||
else if (isset($_GET['user_id']))
|
||||
{
|
||||
$username = get_username($_GET['user_id']);
|
||||
}
|
||||
|
||||
if (isset( $_GET['page'] ))
|
||||
switch ( $_GET['page'] )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user