summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
Diffstat (limited to 'install')
-rw-r--r--install/ui/widget.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js
index beb09a9d4..eb2f70cfc 100644
--- a/install/ui/widget.js
+++ b/install/ui/widget.js
@@ -352,7 +352,8 @@ IPA.text_widget = function(spec) {
that.save = function() {
if (that.read_only || !that.writable) {
- return that.values;
+ return null;
+
} else {
var input = $('input[name="'+that.name+'"]', that.container);
var value = $.trim(input.val());