diff options
author | louise <louise> | 2009-09-28 10:34:21 +0000 |
---|---|---|
committer | louise <louise> | 2009-09-28 10:34:21 +0000 |
commit | 3bf0bda67954f15c650108b9c057adcf48b11bdd (patch) | |
tree | 4ccb3fe72aae57450172adefebb8cc3675a5c008 | |
parent | c3fb0c4fdd35beb6e3e8d00ca58c32ab718ac0ed (diff) |
Making disabled attribute of tags correct
-rwxr-xr-x | web/index.cgi | 6 | ||||
-rwxr-xr-x | web/questionnaire.cgi | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/web/index.cgi b/web/index.cgi index 1ec472467..808f19cfe 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: index.cgi,v 1.285 2009-09-28 09:55:17 louise Exp $ +# $Id: index.cgi,v 1.286 2009-09-28 10:34:21 louise Exp $ use strict; use Standard; @@ -696,7 +696,7 @@ EOF $out .= <<EOF; <div id="fileupload_flashUI" style="display:none"> <label for="form_photo">Photo:</label> -<input type="text" id="txtfilename" disabled="disabled" style="background-color: #ffffff;"> +<input type="text" id="txtfilename" disabled style="background-color: #ffffff;"> <input type="button" value="Browse..." onclick="document.getElementById('txtfilename').value=''; swfu.cancelUpload(); swfu.selectFile();"> <input type="hidden" name="upload_fileid" id="upload_fileid" value="$input_h{upload_fileid}"> </div> @@ -980,7 +980,7 @@ EOF $fixedline <div id="fileupload_flashUI" style="display:none"> <label for="form_photo">Photo:</label> -<input type="text" id="txtfilename" disabled="disabled" style="background-color: #ffffff;"> +<input type="text" id="txtfilename" disabled style="background-color: #ffffff;"> <input type="button" value="Browse..." onclick="document.getElementById('txtfilename').value=''; swfu.cancelUpload(); swfu.selectFile();"> <input type="hidden" name="upload_fileid" id="upload_fileid" value="$input_h{upload_fileid}"> </div> diff --git a/web/questionnaire.cgi b/web/questionnaire.cgi index f06719fe6..4b91a1ab3 100755 --- a/web/questionnaire.cgi +++ b/web/questionnaire.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: questionnaire.cgi,v 1.41 2009-09-03 13:36:48 louise Exp $ +# $Id: questionnaire.cgi,v 1.42 2009-09-28 10:34:21 louise Exp $ use strict; use Standard; @@ -276,7 +276,7 @@ your experience of getting the problem fixed?')); <div id="fileupload_flashUI" style="display:none"> <label for="form_photo">Photo:</label> -<input type="text" id="txtfilename" disabled="true" style="background-color: #ffffff;"> +<input type="text" id="txtfilename" disabled style="background-color: #ffffff;"> <input type="button" value="Browse..." onclick="document.getElementById('txtfilename').value=''; swfu.cancelUpload(); swfu.selectFile();"> <input type="hidden" name="upload_fileid" id="upload_fileid" value=""> </div> |