mirror of
https://framagit.org/framasoft/framadate/framadate
synced 2026-01-23 02:14:06 +00:00
restrict custom urls
fixed coding standard issues added error message to locale Remove unecessary variable Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
59569071e8
commit
88fb61660a
2 changed files with 4 additions and 0 deletions
|
|
@ -112,6 +112,9 @@ if ($goToStep2) {
|
|||
} else if ($pollRepository->existsById($customized_url)) {
|
||||
$error_on_customized_url = true;
|
||||
$error_on_customized_url_msg = __('Error', 'Poll id already used');
|
||||
} else if (in_array($customized_url, ['admin', 'vote', 'action'], true)) {
|
||||
$error_on_customized_url = true;
|
||||
$error_on_customized_url_msg = __('Error', 'This id is not allowed');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -150,6 +150,7 @@
|
|||
"The name is invalid.": "The name is invalid.",
|
||||
"The name you've chosen already exist in this poll!": "The name you've chosen already exists in this poll!",
|
||||
"There is a problem with your choices": "There is a problem with your choices",
|
||||
"This id is not allowed": "This id is not allowed",
|
||||
"This poll doesn't exist !": "This poll doesn't exist!",
|
||||
"Update vote failed": "Update vote failed",
|
||||
"You already voted": "You already voted",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue