Commit 782a1b01 by Javier

Se elimina error comillas en nombre y apellido

parent f82af503
......@@ -13,7 +13,7 @@ if (isset($argv[1]) && isset($argv[2]) && isset($argv[3]) && isset($argv[4]) &&
'username' => $argv[1],
'password' => $argv[2] . strval(rand(100, 999)),
'active' => '1',
'firstname' => strtoupper($argv[3]),
'firstname' => str_replace("\"", "", strtoupper($argv[3])),
'lastname' => strtoupper($argv[4]),
'callingcard_pin' => strval(rand(1000, 9999)),
'id_group' => 3,
......
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