Project

General

Profile

Actions

Bug #6231

closed

Captive portal won't allow changing the voucher charset at all.

Added by sebastian nielsen almost 8 years ago. Updated almost 8 years ago.

Status:
Resolved
Priority:
Normal
Category:
Captive Portal
Target version:
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"

Actions #1

Updated by sebastian nielsen almost 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)) {

Actions #2

Updated by sebastian nielsen almost 8 years ago

forgot filename too, services_captiveportal_vouchers.php

Actions #3

Updated by Chris Buechler almost 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 #4

Updated by Chris Buechler almost 8 years ago

  • Status changed from Feedback to Resolved

fixed

Actions

Also available in: Atom PDF