1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-23 22:53:01 +02:00

Display Password hash-type in Admin > Users. e_URL_LEGACY constant added when SEF URLs detected.

This commit is contained in:
Cameron
2016-06-10 16:37:36 -07:00
parent 84b3004231
commit c8fbb3957a
4 changed files with 41 additions and 16 deletions

View File

@@ -29,7 +29,7 @@ e107::coreLan('date');
e107::css('inline', "
.label-status { width:100%; display:block; padding-bottom:5px; padding-top:5px }
.label-status, .label-password { width:100%; display:block; padding-bottom:5px; padding-top:5px }
");
class users_admin extends e_admin_dispatcher
@@ -2398,10 +2398,21 @@ class users_admin_form_ui extends e_admin_form_ui
{
if($mode == 'read')
{
if(empty($curVal))
if(empty($curval))
{
return "No password!";
}
// if(getperms('0'))
{
$type = e107::getUserSession()->getHashType($curval, 'array');
$num = $type[0];
$styles= array(0=>'label-danger',1=>'label-warning', 3=>'label-success');
return "<span class='label label-password ".$styles[$num]."'>".$type[1]."</span>";
}
}
if($mode == 'write')
{