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 @@