Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
349b5724
Commit
349b5724
authored
8 years ago
by
andreykproductengine
Browse files
Options
Downloads
Patches
Plain Diff
MAINT-930 Fixed Viewer saves your password whether you want it to or not
parent
7004dfe7
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/newview/llloginhandler.cpp
+0
-1
0 additions, 1 deletion
indra/newview/llloginhandler.cpp
indra/newview/llstartup.cpp
+7
-0
7 additions, 0 deletions
indra/newview/llstartup.cpp
with
7 additions
and
1 deletion
indra/newview/llloginhandler.cpp
+
0
−
1
View file @
349b5724
...
@@ -168,7 +168,6 @@ LLPointer<LLCredential> LLLoginHandler::loadSavedUserLoginInfo()
...
@@ -168,7 +168,6 @@ LLPointer<LLCredential> LLLoginHandler::loadSavedUserLoginInfo()
authenticator
[
"algorithm"
]
=
"md5"
;
authenticator
[
"algorithm"
]
=
"md5"
;
authenticator
[
"secret"
]
=
md5pass
;
authenticator
[
"secret"
]
=
md5pass
;
// yuck, we'll fix this with mani's changes.
// yuck, we'll fix this with mani's changes.
gSavedSettings
.
setBOOL
(
"AutoLogin"
,
TRUE
);
return
gSecAPIHandler
->
createCredential
(
LLGridManager
::
getInstance
()
->
getGrid
(),
return
gSecAPIHandler
->
createCredential
(
LLGridManager
::
getInstance
()
->
getGrid
(),
identifier
,
authenticator
);
identifier
,
authenticator
);
}
}
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llstartup.cpp
+
7
−
0
View file @
349b5724
...
@@ -683,10 +683,17 @@ bool idle_startup()
...
@@ -683,10 +683,17 @@ bool idle_startup()
}
}
else
if
(
gSavedSettings
.
getBOOL
(
"AutoLogin"
))
else
if
(
gSavedSettings
.
getBOOL
(
"AutoLogin"
))
{
{
// Log into last account
gRememberPassword
=
TRUE
;
gRememberPassword
=
TRUE
;
gSavedSettings
.
setBOOL
(
"RememberPassword"
,
TRUE
);
gSavedSettings
.
setBOOL
(
"RememberPassword"
,
TRUE
);
show_connect_box
=
false
;
show_connect_box
=
false
;
}
}
else
if
(
gSavedSettings
.
getLLSD
(
"UserLoginInfo"
).
size
()
==
3
)
{
// Console provided login&password
gRememberPassword
=
gSavedSettings
.
getBOOL
(
"RememberPassword"
);
show_connect_box
=
false
;
}
else
else
{
{
gRememberPassword
=
gSavedSettings
.
getBOOL
(
"RememberPassword"
);
gRememberPassword
=
gSavedSettings
.
getBOOL
(
"RememberPassword"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment