Merge branch 'master' of https://code.tupale.co/qwerty/milfs
This commit is contained in:
commit
46b9ba4193
@ -1,4 +1,5 @@
|
|||||||
body {
|
body {
|
||||||
|
|
||||||
overflow-x: hidden !important;
|
overflow-x: hidden !important;
|
||||||
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
@ -7480,12 +7480,23 @@ function isJson($str) {
|
|||||||
|
|
||||||
|
|
||||||
function array_respuestas($id,$identificador,$plantilla) {
|
function array_respuestas($id,$identificador,$plantilla) {
|
||||||
|
|
||||||
|
$datos= array();
|
||||||
|
//$datos['id']= $request->getAttribute('id');
|
||||||
|
$datos['identificador']= $identificador;
|
||||||
|
$datos['tipo']='simple';
|
||||||
|
//$datos['id']="76";
|
||||||
|
|
||||||
|
//return json($datos);
|
||||||
|
|
||||||
|
|
||||||
if($id=='') {return;}
|
if($id=='') {return;}
|
||||||
$id = mysql_seguridad($id);
|
$id = mysql_seguridad($id);
|
||||||
$formulario_respuesta = formulario_respuesta("$id","$identificador");
|
$formulario_respuesta = formulario_respuesta("$id","$identificador");
|
||||||
$consulta = "SELECT form_id , timestamp FROM form_datos
|
$consulta = "SELECT form_id , timestamp FROM form_datos
|
||||||
WHERE control = '$identificador' AND form_id != '$id' GROUP BY form_id , timestamp
|
WHERE control = '$identificador' AND form_id != '$id' GROUP BY form_id , timestamp
|
||||||
";
|
";
|
||||||
|
// return $consulta;
|
||||||
$array = array();
|
$array = array();
|
||||||
$link=Conectarse();
|
$link=Conectarse();
|
||||||
mysqli_set_charset($link, "utf8");
|
mysqli_set_charset($link, "utf8");
|
||||||
@ -7501,7 +7512,8 @@ if (mysqli_num_rows($sql)!='0'){
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
}$array[] = $respuesta;
|
}
|
||||||
|
$array[] = $respuesta;
|
||||||
|
|
||||||
}else{$resultado ="";}
|
}else{$resultado ="";}
|
||||||
//$resultado = "$resultado $formulario_respuesta";
|
//$resultado = "$resultado $formulario_respuesta";
|
||||||
@ -11391,6 +11403,7 @@ function formulario_embebido_campos($id,$opcion){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function json($datos){
|
function json($datos){
|
||||||
|
$w_rango="";
|
||||||
$limite="";
|
$limite="";
|
||||||
if(isset($datos['start']) AND isset($datos['end'])) {
|
if(isset($datos['start']) AND isset($datos['end'])) {
|
||||||
$campo = buscar_campo_tipo($datos['id'],"32");
|
$campo = buscar_campo_tipo($datos['id'],"32");
|
||||||
@ -13002,7 +13015,7 @@ if (mysqli_num_rows($sql)!='0'){
|
|||||||
$html ="$contenido";
|
$html ="$contenido";
|
||||||
$contenido = nl2br($html);
|
$contenido = nl2br($html);
|
||||||
//$contenido = Markdown($contenido);
|
//$contenido = Markdown($contenido);
|
||||||
$contenido= html_entity_decode($contenido);
|
$contenido= $contenido;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ $app ->get('/api/proyectos/aplicaciones/{id}', function(Request $request, Respon
|
|||||||
// entradas a aplicacion por identificador
|
// entradas a aplicacion por identificador
|
||||||
$app ->get('/api/proyectos/aplicaciones/{id}/{identificador}', function(Request $request, Response $response){
|
$app ->get('/api/proyectos/aplicaciones/{id}/{identificador}', function(Request $request, Response $response){
|
||||||
$datos= array();
|
$datos= array();
|
||||||
//$datos['id']= $request->getAttribute('id');
|
$datos['id']= $request->getAttribute('id');
|
||||||
$datos['identificador']= $request->getAttribute('identificador');
|
$datos['identificador']= $request->getAttribute('identificador');
|
||||||
$datos['tipo']='simple';
|
$datos['tipo']='simple';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user