From e47142b2e03c85e7f4414c834adfc530737d4a3e Mon Sep 17 00:00:00 2001 From: humano Date: Sun, 5 Nov 2017 15:11:13 -0500 Subject: [PATCH] mejoras en la vista app --- milfs/funciones/funciones.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/milfs/funciones/funciones.php b/milfs/funciones/funciones.php index 57cfe14..055a0f9 100644 --- a/milfs/funciones/funciones.php +++ b/milfs/funciones/funciones.php @@ -10950,11 +10950,11 @@ $campo_imagen = $campo_imagen[0]; $campo[$row['id_campo']]=$contenido; $caracteres = strlen("$contenido"); $campo_400[$row['id_campo']] = substr($contenido,0, $length = 400);//$contenido; - if($caracteres > 440) { $campo_400[$row['id_campo']] .= "... "; } + if($caracteres > 440) { $campo_400[$row['id_campo']] .= "... "; } $campo_80[$row['id_campo']] = substr($contenido,0, $length = 80);//$contenido; - if($caracteres > 80) { $campo_80[$row['id_campo']] .= "... "; } + if($caracteres > 80) { $campo_80[$row['id_campo']] .= "... "; } $campo_55[$row['id_campo']] = substr($contenido,0, $length = 55);//$contenido; - if($caracteres > 55) { $campo_55[$row['id_campo']] .= "... "; } + if($caracteres > 55) { $campo_55[$row['id_campo']] .= "... "; } $campo_full[$row['id_campo']] = $contenido_full; $campo_limpio[$row['id_campo']] = trim(strip_tags($contenido," ")); $campo_multiple[$row['id_campo']] = $contenido;