Fixed Issue 534 - Replaces space with dash
This commit is contained in:
@@ -51,7 +51,7 @@ else {
|
|||||||
//get the http values and set them as php variables
|
//get the http values and set them as php variables
|
||||||
if (count($_POST) > 0) {
|
if (count($_POST) > 0) {
|
||||||
//get the values from the HTTP POST and save them as PHP variables
|
//get the values from the HTTP POST and save them as PHP variables
|
||||||
$extension = check_str($_POST["extension"]);
|
$extension = str_replace(' ','-',check_str($_POST["extension"]));
|
||||||
$number_alias = check_str($_POST["number_alias"]);
|
$number_alias = check_str($_POST["number_alias"]);
|
||||||
$password = check_str($_POST["password"]);
|
$password = check_str($_POST["password"]);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user