Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
latoilescoute-dev
scoodle
Commits
7ffd7f0b
Commit
7ffd7f0b
authored
Mar 19, 2018
by
Thomas Citharel
Browse files
Fix unable to vote with ConcurrentVoteException when ValueMax is null
Closes #276 Signed-off-by:
Thomas Citharel
<
tcit@tcit.fr
>
parent
87b89bc6
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/classes/Framadate/Services/PollService.php
View file @
7ffd7f0b
...
...
@@ -296,7 +296,7 @@ class PollService {
$best_choices
=
$this
->
computeBestChoices
(
$votes
);
foreach
(
$best_choices
[
'y'
]
as
$i
=>
$nb_choice
)
{
// if for this option we have reached maximum value and user wants to add itself too
if
(
$nb_choice
>=
$poll
->
ValueMax
&&
$user_choice
[
$i
]
===
"2"
)
{
if
(
$poll
->
ValueMax
!=
null
&&
$nb_choice
>=
$poll
->
ValueMax
&&
$user_choice
[
$i
]
===
"2"
)
{
throw
new
ConcurrentVoteException
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment