From 08e8c1326ff2e228393dcbdd07e07d62825425ca Mon Sep 17 00:00:00 2001 From: Nahuel Date: Tue, 17 May 2022 15:42:05 -0400 Subject: [PATCH] Arreglado creacion de bootcamp --- src/main/java/com/roshka/proyectofinal/bootcamp/SaveServlet.java | 7 ++++--- src/main/webapp/postulante-consulta.jsp | 4 ++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/roshka/proyectofinal/bootcamp/SaveServlet.java b/src/main/java/com/roshka/proyectofinal/bootcamp/SaveServlet.java index e3ff1fe..dfaa25d 100644 --- a/src/main/java/com/roshka/proyectofinal/bootcamp/SaveServlet.java +++ b/src/main/java/com/roshka/proyectofinal/bootcamp/SaveServlet.java @@ -26,11 +26,12 @@ public class SaveServlet extends HttpServlet { String titulo=request.getParameter("titulo"); String activoStr=request.getParameter("activo"); System.out.println(activoStr); - Boolean activo = false; - if ( activoStr.equals("on") ) { - activo = true; + Boolean activo = true; + if ( activoStr == null ) { + activo = false; } + Bootcamp b =new Bootcamp( id_lenguaje, id_profesor, fecha_inicio, fecha_fin, descripcion, imagen, titulo, activo); int status= BootcampDao.save(b); diff --git a/src/main/webapp/postulante-consulta.jsp b/src/main/webapp/postulante-consulta.jsp index 3f75be7..1ddbda0 100644 --- a/src/main/webapp/postulante-consulta.jsp +++ b/src/main/webapp/postulante-consulta.jsp @@ -101,6 +101,10 @@
+ + + +
-- libgit2 0.26.0