From 797d251227f65d5b9ac02a4b1cc06392bb1b8634 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 9 Feb 2012 11:49:28 +0000 Subject: [PATCH] =?UTF-8?q?Tareas=20#766=20->=20Aumentar=20el=20n=C3=BAmer?= =?UTF-8?q?o=20de=20filas=20visibles=20en=20el=20tablero?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_Intranet/trunk@117 e2b1556b-49f8-d141-9351-52d6861a72d9 --- src/tablero.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tablero.php b/src/tablero.php index 1c967d1..f0527d5 100644 --- a/src/tablero.php +++ b/src/tablero.php @@ -18,7 +18,7 @@ $sql_usuarios = 'select h1.oid_h, h1.fecha_h, h1.persona_h, h1.texto_h, usuarios from historial_usuario as h1 left join usuarios on (usuarios.oid = h1.oid_h) order by 2 desc -limit 0,50'; +limit 0,150'; $bd=new BD(); $resultado_usuarios = $bd->execQuery($sql_usuarios); @@ -56,7 +56,7 @@ $sql_ofertas = 'select h1.oid_h, h1.fecha_h, h1.persona_h, h1.texto_h, pedidos.n from historial_pedido as h1 left join pedidos on (pedidos.oid = h1.oid_h) order by 2 desc -limit 0,50'; +limit 0,150'; $bd=new BD(); $resultado_ofertas = $bd->execQuery($sql_ofertas);