Merge branch 'fix/Merge_develop_master_comments' into 'develop'
Fix : L'ajout de commentaire ne fonctionne pas avec un sondage nommé. Deux problèmes corrigés : - En cas d'erreur d'ajout d'un commentaire, le message n'était pas montré - On ne prenait pas en compte la possibilité que le sondage puisse être appelé par son nom et pas par son ID See merge request !105
This commit is contained in:
commit
ee80682223
@ -52,9 +52,7 @@ $securityService = new SecurityService();
|
||||
|
||||
if (!empty($_POST['poll'])) {
|
||||
$poll_id = filter_input(INPUT_POST, 'poll', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
|
||||
if (strlen($poll_id) === 16) {
|
||||
$poll = $pollService->findById($poll_id);
|
||||
}
|
||||
$poll = $pollService->findById($poll_id);
|
||||
}
|
||||
|
||||
if (!$poll) {
|
||||
|
@ -27,7 +27,8 @@ use Framadate\Services\LogService;
|
||||
use Framadate\Services\MailService;
|
||||
use Framadate\Services\PollService;
|
||||
use Framadate\Services\NotificationService;
|
||||
use Framadate\Security\PasswordHasher;
|
||||
use Framadate\Security\PasswordHasher;
|
||||
use Framadate\Utils;
|
||||
|
||||
include_once __DIR__ . '/app/inc/init.php';
|
||||
|
||||
|
@ -74,6 +74,7 @@ $(document).ready(function () {
|
||||
newMessage
|
||||
.find('.contents')
|
||||
.text(data.message.message);
|
||||
newMessage.removeClass('hidden');
|
||||
var commentsAlert = $('#comments_alerts');
|
||||
commentsAlert
|
||||
.empty()
|
||||
|
Loading…
Reference in New Issue
Block a user