|
@@ 139-141 (lines=3) @@
|
| 136 |
|
$out .= 'Config.init_confirmation = "' . $this->mkProfileConfirmation() . "\"\n"; |
| 137 |
|
|
| 138 |
|
$out .= 'Config.sb_user_file = """' . $this->mkSbUserFile() . '"""' . "\n"; |
| 139 |
|
if (!empty($this->attributes['internal:realm'][0])) { |
| 140 |
|
$out .= 'Config.user_realm = "' . $this->attributes['internal:realm'][0] . "\"\n"; |
| 141 |
|
} |
| 142 |
|
if(!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) { |
| 143 |
|
$out .= "Config.hint_user_input = True\n"; |
| 144 |
|
} |
|
@@ 142-144 (lines=3) @@
|
| 139 |
|
if (!empty($this->attributes['internal:realm'][0])) { |
| 140 |
|
$out .= 'Config.user_realm = "' . $this->attributes['internal:realm'][0] . "\"\n"; |
| 141 |
|
} |
| 142 |
|
if(!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) { |
| 143 |
|
$out .= "Config.hint_user_input = True\n"; |
| 144 |
|
} |
| 145 |
|
if(!empty($this->attributes['internal:verify_userinput_suffix'][0]) && $this->attributes['internal:verify_userinput_suffix'][0] == 1) { |
| 146 |
|
$out .= "Config.verify_user_realm_input = True\n"; |
| 147 |
|
} |
|
@@ 145-147 (lines=3) @@
|
| 142 |
|
if(!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) { |
| 143 |
|
$out .= "Config.hint_user_input = True\n"; |
| 144 |
|
} |
| 145 |
|
if(!empty($this->attributes['internal:verify_userinput_suffix'][0]) && $this->attributes['internal:verify_userinput_suffix'][0] == 1) { |
| 146 |
|
$out .= "Config.verify_user_realm_input = True\n"; |
| 147 |
|
} |
| 148 |
|
return $out; |
| 149 |
|
} |
| 150 |
|
|