Skip to content

Commit

Permalink
Version 16.132.5
Browse files Browse the repository at this point in the history
  • Loading branch information
acanas committed Jan 30, 2017
1 parent 0d9d74b commit 628e850
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion swad_changelog.h
Expand Up @@ -191,13 +191,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/

#define Log_PLATFORM_VERSION "SWAD 16.132.4 (2017-01-30)"
#define Log_PLATFORM_VERSION "SWAD 16.132.5 (2017-01-30)"
#define CSS_FILE "swad16.132.4.css"
#define JS_FILE "swad16.123.js"

// Number of lines (includes comments but not blank lines) has been got with the following command:
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*?.h sql/swad*.sql | tail -1
/*
Version 16.132.5: Jan 30, 2017 Fixed bug in checking consent on dangerous action. (211888 lines)
Version 16.132.4: Jan 30, 2017 Changes in connected users. (211887 lines)
Version 16.132.3: Jan 30, 2017 Code refactoring in connected users. (211881 lines)
Version 16.132.2: Jan 30, 2017 Fixed bug in file browser. (211911 lines)
Expand Down
2 changes: 1 addition & 1 deletion swad_password.c
Expand Up @@ -926,7 +926,7 @@ bool Pwd_GetConfirmationOnDangerousAction (void)
char EncryptedPassword[Cry_LENGTH_ENCRYPTED_STR_SHA512_BASE64 + 1];

/***** Get if consent has been done *****/
if (Par_GetParToBool ("Consent"))
if (!Par_GetParToBool ("Consent"))
{
Lay_ShowAlert (Lay_WARNING,Txt_You_have_not_confirmed_the_action);
return false;
Expand Down

0 comments on commit 628e850

Please sign in to comment.