Actions
Bug #6231
closedCaptive portal won't allow changing the voucher charset at all.
Start date:
04/22/2016
Due date:
% Done:
0%
Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
2.3
Affected Architecture:
Description
Attempting to change the charset to anything just render the error:
"The following input errors were detected:
Need at least 2 characters to create vouchers."
Example:
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
Updated by sebastian nielsen over 8 years ago
Found the bug. misplaced parenthis:
if ($_POST['charset'] && (strlen($_POST['charset'] < 2))) {
This causes the system to only allow digits in the voucher charset dialog.
Correct line should be:
if ($_POST['charset'] && (strlen($_POST['charset']) < 2)) {
Updated by sebastian nielsen over 8 years ago
forgot filename too, services_captiveportal_vouchers.php
Updated by Chris Buechler over 8 years ago
- Status changed from New to Feedback
- Assignee set to Chris Buechler
Good catch. Not sure what input you had there which caused the issue, the default character set was fine. Fix pushed
Actions