Commit b0a36982 authored by Franco Fichtner's avatar Franco Fichtner

captive portal: exclude a few more chars following user feedback

parent cbe5cddb
<?php
/**
* Copyright (C) 2015 Deciso B.V.
*
......@@ -147,7 +148,7 @@ class Voucher implements IAuthConnector
$response = array();
if ($this->dbHandle != null) {
// list of characters to skip for random generator
$doNotUseChr = array('<', '>', '&', 'l' , 'O' ,'`', '|' ,'^', '"');
$doNotUseChr = array('<', '>', '{', '}', '&', 'l' , 'O' ,'`', '\'', '|' ,'^', '"');
// create map of random readable characters
$characterMap = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment