Browse Source

Solved little error

Drowsito 4 days ago
parent
commit
8727ef071c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/es/uv/saic/web/ProceduresController.java

+ 1 - 1
src/main/java/es/uv/saic/web/ProceduresController.java

@@ -289,7 +289,7 @@ public class ProceduresController {
 			@RequestParam("action") String action) throws IOException {	
 		
 				HashMap<String, Object> response =
-                pc.findProcedure(idPlantilla.toString(), action);
+                pc.formTemplate(idPlantilla, action);
             if (response != null && response.get("redirect") != null) {
                 model.addAllAttributes(response);
                 return response.get("redirect").toString();