From 96e51cf97c3b0a48fe2b540a8f6968ff9ebe6e7e Mon Sep 17 00:00:00 2001 From: humano Date: Thu, 22 Nov 2018 18:11:44 -0500 Subject: [PATCH] correccion vista favorita por defecto --- funciones/funciones.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funciones/funciones.php b/funciones/funciones.php index a191d31..48c5202 100644 --- a/funciones/funciones.php +++ b/funciones/funciones.php @@ -602,7 +602,7 @@ function vista_favorita($form_id){ elseif($vista=='notas') { $favorita="n$form_id";} elseif($vista=='landingpage') { $favorita="o$form_id";} else{ $favorita="b$form_id?registros=10";} - }else{ $favorita="a$form_id";} + }else{ $favorita="o$form_id";} return $favorita; }