diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2013-06-27 16:11:48 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2013-06-27 16:11:48 -0400 | 
| commit | 4a9b688b4d46f67e1b00e04ebe972470b61e560a (patch) | |
| tree | 9e6b781078118ab06fdc5bf946470044b8a98662 | |
| parent | e060f7a6e529d0ef83106db85969a2d047a2247a (diff) | |
CHOP-959: Make settings.xml actually valid XML LLSD.
UserLoginInfo block had <key>Value</key> without the required subsequent
element to provide any actual value. This confused at least the Python
LLSD reader.
| -rwxr-xr-x | indra/newview/app_settings/settings.xml | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 12ca902c59..997bde37ce 100755 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -12859,12 +12859,13 @@      <key>UserLoginInfo</key>      <map>        <key>Comment</key> -      <string>Users loging data.</string> +      <string>User login data.</string>        <key>Persist</key>        <integer>1</integer>        <key>Type</key>        <string>LLSD</string>        <key>Value</key> +      <string/>      </map>      <key>VFSOldSize</key>      <map> | 
