1
0
Fork 0

correccion bug en creacion de usuarios

This commit is contained in:
humano 2018-11-24 12:51:04 -05:00
parent 39a27020db
commit 1b48337162
1 changed files with 2 additions and 2 deletions

View File

@ -2389,7 +2389,7 @@ return $resultado;
}
function json_render($contenido,$tipo,$control){
$contenido = stripcslashes($contenido);
$campos = "$tipo,$contenido";
$datos = json_decode($contenido, true);
if ($tipo == "html"){
@ -2425,7 +2425,7 @@ elseif($tipo == "csv") {
}
}
$resultado = trim($linea,",");
$resultado = trim($linea,",")."";
}
elseif($tipo == "array") {
$array= array();