From 1aa26d0cd72028e96901963f6700f1acbc1bc163 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 20 Aug 2012 08:45:39 +0200 Subject: [PATCH] Fix: missing show field if "in progress" is chosen first --- htdocs/core/class/html.formactions.class.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/htdocs/core/class/html.formactions.class.php b/htdocs/core/class/html.formactions.class.php index 27f224551a4..931bf1a8a3d 100644 --- a/htdocs/core/class/html.formactions.class.php +++ b/htdocs/core/class/html.formactions.class.php @@ -1,6 +1,6 @@ - * Copyright (C) 2010-2011 Regis Houssin + * Copyright (C) 2010-2012 Regis Houssin * Copyright (C) 2010 Juanjo Menent * * This program is free software; you can redistribute it and/or modify @@ -78,7 +78,7 @@ class FormActions jQuery('#val'+htmlname).change(function() { select_status(); }); - + select_status(); }); @@ -100,6 +100,7 @@ class FormActions } else { jQuery('input[name=percentageshown]').removeAttr('disabled'); + jQuery('.hideifna').show(); } } \n";