Fix de bugs
This commit is contained in:
parent
e47d769964
commit
1dda3958d9
|
@ -52,7 +52,9 @@
|
|||
return false;
|
||||
}
|
||||
|
||||
if (sha1($password) != $users[0]['password'])
|
||||
$user = $users[0];
|
||||
|
||||
if (sha1($password) != $user['password'])
|
||||
{
|
||||
$_SESSION['errormessage'] = 'Cet e-mail n\'existe pas.';
|
||||
header('Location: ' . $this->generateUrl('connect', 'login'));
|
||||
|
|
|
@ -162,7 +162,7 @@
|
|||
continue;
|
||||
}
|
||||
|
||||
$db->updateTableWhere('contacts', ['name' => $contact['name'], 'number' => $number], ['id' => $contact['id']]);
|
||||
$db->updateTableWhere('contacts', ['name' => $contact['name'], 'number' => $number], ['id' => $id]);
|
||||
}
|
||||
|
||||
//Si on a eu des erreurs
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
//On vérifie que le jeton csrf est bon
|
||||
if (!internalTools::verifyCSRF($csrf))
|
||||
{
|
||||
$_SESSION['errormessage'] => 'Jeton CSRF invalide !';
|
||||
$_SESSION['errormessage'] = 'Jeton CSRF invalide !';
|
||||
header('Location: ' . $this->generateUrl('groups', 'showAll'));
|
||||
return false;
|
||||
}
|
||||
|
@ -110,7 +110,7 @@
|
|||
global $db;
|
||||
|
||||
$nom = $_POST['name'];
|
||||
if (!$db->insertIntoTable('groups' ['name' => $nom]))
|
||||
if (!$db->insertIntoTable('groups', ['name' => $nom]))
|
||||
{
|
||||
$_SESSION['errormessage'] = 'Impossible de créer ce groupe.';
|
||||
header('Location: ' . $this->generateUrl('groups', 'showAll'));
|
||||
|
@ -170,6 +170,6 @@
|
|||
{
|
||||
global $db;
|
||||
|
||||
echo json_encode($db->getAll('groups'));
|
||||
echo json_encode($db->getFromTableWhere('groups'));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
if (!internalTools::verifyCSRF($csrf))
|
||||
{
|
||||
$_SESSION['errormessage'] = 'Jeton CSRF invalide !';
|
||||
header('Location: ' . $this->generateUrl('profile', 'showAll');
|
||||
header('Location: ' . $this->generateUrl('profile', 'showAll'));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -61,7 +61,7 @@
|
|||
$user = $db->getFromTableWhere('users', ['email' => $_SESSION['email']]);
|
||||
$password = sha1($_POST['password']);
|
||||
|
||||
if (!$db->updateTableWhere('users', ['password' => $password], ['id' => $user['id']]))
|
||||
if (!$db->updateTableWhere('users', ['password' => $password], ['id' => $user[0]['id']]))
|
||||
{
|
||||
$_SESSION['errormessage'] = 'Impossible de mettre à jour le mot de passe.';
|
||||
header('Location: ' . $this->generateUrl('profile', 'show'));
|
||||
|
@ -86,7 +86,7 @@
|
|||
if (!internalTools::verifyCSRF($csrf))
|
||||
{
|
||||
$_SESSION['errormessage'] = 'Jeton CSRF invalide !';
|
||||
header('Location: ' . $this->generateUrl('profile', 'showAll');
|
||||
header('Location: ' . $this->generateUrl('profile', 'showAll'));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -114,7 +114,7 @@
|
|||
|
||||
$user = $db->getFromTableWhere('users', ['email' => $_SESSION['email']]);
|
||||
|
||||
if (!$db->updateTableWhere('users', ['email' => $email], ['id' => $user['id']]))
|
||||
if (!$db->updateTableWhere('users', ['email' => $email], ['id' => $user[0]['id']]))
|
||||
{
|
||||
$_SESSION['errormessage'] = 'Cette adresse e-mail est déjà utilisée.';
|
||||
header('Location: ' . $this->generateUrl('profile', 'show'));
|
||||
|
@ -139,7 +139,7 @@
|
|||
if (!internalTools::verifyCSRF($csrf))
|
||||
{
|
||||
$_SESSION['errormessage'] = 'Jeton CSRF invalide !';
|
||||
header('Location: ' . $this->generateUrl('profile', 'showAll');
|
||||
header('Location: ' . $this->generateUrl('profile', 'showAll'));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
if (!internalTools::verifyCSRF($csrf))
|
||||
{
|
||||
$_SESSION['errormessage'] = 'Jeton CSRF invalide !';
|
||||
header('Location: ' . $this->generateUrl('profile', 'showAll');
|
||||
header('Location: ' . $this->generateUrl('profile', 'showAll'));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -119,13 +119,12 @@
|
|||
if (!internalTools::verifyCSRF($csrf))
|
||||
{
|
||||
$_SESSION['errormessage'] = 'Jeton CSRF invalide !';
|
||||
header('Location: ' . $this->generateUrl('profile', 'showAll');
|
||||
header('Location: ' . $this->generateUrl('profile', 'showAll'));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
global $db;
|
||||
|
||||
|
||||
$date = $_POST['date'];
|
||||
$content = $_POST['content'];
|
||||
|
@ -215,7 +214,7 @@
|
|||
if (!$api)
|
||||
{
|
||||
$_SESSION['errormessage'] = 'Le SMS a bien été créé, mais certains numéro ne sont pas valides.';
|
||||
header('Location: ' . $this->generateUrl('scheduleds', 'showAll');
|
||||
header('Location: ' . $this->generateUrl('scheduleds', 'showAll'));
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
@ -223,7 +222,7 @@
|
|||
if (!$api)
|
||||
{
|
||||
$_SESSION['successmessage'] = 'Le SMS a bien été créé.';
|
||||
header('Location: ' . $this->generateUrl('scheduleds', 'showAll');
|
||||
header('Location: ' . $this->generateUrl('scheduleds', 'showAll'));
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
@ -239,7 +238,7 @@
|
|||
if (!internalTools::verifyCSRF($csrf))
|
||||
{
|
||||
$_SESSION['successmessage'] = 'Jeton CSRF invalide !';
|
||||
header('Location: ' . $this->generateUrl('scheduleds', 'showAll');
|
||||
header('Location: ' . $this->generateUrl('scheduleds', 'showAll'));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@
|
|||
var url = jQuery(this).attr('href');
|
||||
jQuery(target).find('input:checked').each(function ()
|
||||
{
|
||||
url += '/command' + jQuery(this).val() + '_' + jQuery(this).val();
|
||||
url += '/' + jQuery(this).val();
|
||||
});
|
||||
window.location = url;
|
||||
});
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
var url = jQuery(this).attr('href');
|
||||
jQuery(target).find('input:checked').each(function ()
|
||||
{
|
||||
url += '/contacts' + jQuery(this).val() + '_' + jQuery(this).val();
|
||||
url += '/' + jQuery(this).val();
|
||||
});
|
||||
window.location = url;
|
||||
});
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
var url = jQuery(this).attr('href');
|
||||
jQuery(target).find('input:checked').each(function ()
|
||||
{
|
||||
url += '/groups' + jQuery(this).val() + '_' + jQuery(this).val();
|
||||
url += '/' + jQuery(this).val();
|
||||
});
|
||||
window.location = url;
|
||||
});
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
var url = jQuery(this).attr('href');
|
||||
jQuery(target).find('input:checked').each(function ()
|
||||
{
|
||||
url += '/users' + jQuery(this).val() + '_' + jQuery(this).val();
|
||||
url += '/' + jQuery(this).val();
|
||||
});
|
||||
window.location = url;
|
||||
});
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
var url = jQuery(this).attr('href');
|
||||
jQuery(target).find('input:checked').each(function ()
|
||||
{
|
||||
url += '/scheduleds' + jQuery(this).val() + '_' + jQuery(this).val();
|
||||
url += '/' + jQuery(this).val();
|
||||
});
|
||||
window.location = url;
|
||||
});
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
var url = jQuery(this).attr('href');
|
||||
jQuery(target).find('input:checked').each(function ()
|
||||
{
|
||||
url += '/users' + jQuery(this).val() + '_' + jQuery(this).val();
|
||||
url += '/' + jQuery(this).val();
|
||||
});
|
||||
window.location = url;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue