mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-07 08:56:59 +01:00
Fix session key generation on password change and users/groups/profiles management
Delete some old images...
This commit is contained in:
@@ -67,7 +67,7 @@ SP_Users::checkUserAccess("acceditpass",$userId) || die ($strError);
|
||||
<input type="hidden" name="id" value="<? echo $userId; ?>" />
|
||||
<input type="hidden" name="type" value="1" />
|
||||
<input type="hidden" name="action" value="3" />
|
||||
<input type="hidden" name="sk" value="<? echo SP_Common::getSessionKey(TRUE); ?>">
|
||||
<input type="hidden" name="sk" value="<? echo SP_Common::getSessionKey(); ?>">
|
||||
</form>
|
||||
|
||||
<div id="resCheck">
|
||||
|
||||
BIN
imgs/english.png
BIN
imgs/english.png
Binary file not shown.
|
Before Width: | Height: | Size: 2.1 KiB |
BIN
imgs/group.png
BIN
imgs/group.png
Binary file not shown.
|
Before Width: | Height: | Size: 1.4 KiB |
BIN
imgs/groups.png
BIN
imgs/groups.png
Binary file not shown.
|
Before Width: | Height: | Size: 15 KiB |
BIN
imgs/spanish.png
BIN
imgs/spanish.png
Binary file not shown.
|
Before Width: | Height: | Size: 778 B |
@@ -224,7 +224,7 @@ class SP_Users {
|
||||
|
||||
echo '<div class="action fullWidth">';
|
||||
echo '<ul>';
|
||||
echo '<LI><img src="imgs/add.png" title="' . _('Nuevo') . '" class="inputImg" OnClick="usrgrpDetail(0,' . $arrUsersTableProp["newActionId"] . ',\'' . $sk . '\');" /></LI>';
|
||||
echo '<LI><img src="imgs/add.png" title="' . _('Nuevo') . '" class="inputImg" OnClick="usrgrpDetail(0,' . $arrUsersTableProp["newActionId"] . ',\'' . $sk . '\',' . $arrUsersTableProp["active"] . ');" /></LI>';
|
||||
echo '</ul>';
|
||||
echo '</div>';
|
||||
|
||||
|
||||
@@ -546,7 +546,10 @@ function usrgrpDetail(id, type, sk, active){
|
||||
url: url,
|
||||
data: data,
|
||||
success: function(response){
|
||||
$.fancybox(response,{padding: [0,10,10,10]});
|
||||
$.fancybox(response,{
|
||||
padding: [0,10,10,10],
|
||||
afterClose: function(){doAction('usersmenu','',active);}
|
||||
});
|
||||
},
|
||||
error:function(jqXHR, textStatus, errorThrown){
|
||||
var txt = LANG[1] + '<p>' + errorThrown + textStatus + '</p>';
|
||||
@@ -588,7 +591,7 @@ function usersMgmt(frmId, isDel, id, type, sk){
|
||||
|
||||
switch(status){
|
||||
case 0:
|
||||
doAction('usersmenu','',active);
|
||||
// doAction('usersmenu','',active);
|
||||
resMsg("ok", description);
|
||||
break;
|
||||
case 1:
|
||||
|
||||
Reference in New Issue
Block a user