We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 270e5c3 commit e28564dCopy full SHA for e28564d
interface/web/sites/tools.inc.php
@@ -105,9 +105,9 @@ function getClientID($dataRecord) {
105
106
function convertClientName($name){
107
/**
108
- * only allow 'a'..'z', '_', '0'..'9'
+ * only allow 'a'..'z', '_', '-', '0'..'9'
109
*/
110
- $allowed = 'abcdefghijklmnopqrstuvwxyz0123456789_';
+ $allowed = 'abcdefghijklmnopqrstuvwxyz0123456789_-';
111
$res = '';
112
$name = strtolower(trim($name));
113
for ($i=0; $i < strlen($name); $i++){
0 commit comments