-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Feature/user edit form #165
Conversation
V2.13.0
* Add attribute Label for civil_name * Add input for social name * Add migration com os comandos sql para o nome social do professor * Adicionado nova tag versão e as modificações na BOARD_MSG * Add título para o tooltip do nome social e civil * Add variableData par Civil Name e Social Name * Add property para Nova coluna na tabela 'instructor_identification': * add ao help os títulos do professor * Format InstructorIdentification
if (isset($_POST['Users'], $_POST['Confirm'])) { | ||
$model->attributes = $_POST['Users']; | ||
if ($model->validate()) { | ||
$password = md5($_POST['Users']['password']); |
Check warning
Code scanning / SnykCode
Use of Password Hash With Insufficient Computational Effort
$model->attributes = $_POST['Users']; | ||
if ($model->validate()) { | ||
$password = md5($_POST['Users']['password']); | ||
$confirm = md5($_POST['Confirm']); |
Check warning
Code scanning / SnykCode
Use of Password Hash With Insufficient Computational Effort
$model = Users::model()->findByPk($id); | ||
|
||
if (isset($_POST['Users'], $_POST['Confirm'])) { | ||
$password = md5($_POST['Users']['password']); |
Check warning
Code scanning / SnykCode
Use of Password Hash With Insufficient Computational Effort
|
||
if (isset($_POST['Users'], $_POST['Confirm'])) { | ||
$password = md5($_POST['Users']['password']); | ||
$confirm = md5($_POST['Confirm']); |
Check warning
Code scanning / SnykCode
Use of Password Hash With Insufficient Computational Effort
if (isset($_POST['Users'], $_POST['Confirm'])) { | ||
$model->attributes = $_POST['Users']; | ||
if ($model->validate()) { | ||
$password = md5($_POST['Users']['password']); |
Check warning
Code scanning / SnykCode
Use of Password Hash With Insufficient Computational Effort
$model->attributes = $_POST['Users']; | ||
if ($model->validate()) { | ||
$password = md5($_POST['Users']['password']); | ||
$confirm = md5($_POST['Confirm']); |
Check warning
Code scanning / SnykCode
Use of Password Hash With Insufficient Computational Effort
SonarCloud Quality Gate failed. |
No description provided.