Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
9411d8bb
Commit
9411d8bb
authored
13 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
fixed users not being able to change their password
parent
e89a4b3a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
settings/ajax/changepassword.php
+4
-4
4 additions, 4 deletions
settings/ajax/changepassword.php
with
4 additions
and
4 deletions
settings/ajax/changepassword.php
+
4
−
4
View file @
9411d8bb
...
@@ -6,15 +6,15 @@ require_once('../../lib/base.php');
...
@@ -6,15 +6,15 @@ require_once('../../lib/base.php');
// We send json data
// We send json data
header
(
"Content-Type: application/jsonrequest"
);
header
(
"Content-Type: application/jsonrequest"
);
$username
=
isset
(
$_POST
[
"username"
])
?
$_POST
[
"username"
]
:
OC_User
::
getUser
();
$password
=
$_POST
[
"password"
];
// Check if we are a user
// Check if we are a user
if
(
!
OC_User
::
isLoggedIn
()
||
!
OC_Group
::
inGroup
(
OC_User
::
getUser
(),
'admin'
)
)
{
if
(
!
OC_User
::
isLoggedIn
()
||
(
!
OC_Group
::
inGroup
(
OC_User
::
getUser
(),
'admin'
)
&&
$username
!=
OC_User
::
getUser
()))
{
echo
json_encode
(
array
(
"status"
=>
"error"
,
"data"
=>
array
(
"message"
=>
"Authentication error"
)));
echo
json_encode
(
array
(
"status"
=>
"error"
,
"data"
=>
array
(
"message"
=>
"Authentication error"
)));
exit
();
exit
();
}
}
$username
=
isset
(
$_POST
[
"username"
])
?
$_POST
[
"username"
]
:
OC_User
::
getUser
();
$password
=
$_POST
[
"password"
];
// Return Success story
// Return Success story
if
(
OC_User
::
setPassword
(
$username
,
$password
)){
if
(
OC_User
::
setPassword
(
$username
,
$password
)){
echo
json_encode
(
array
(
"status"
=>
"success"
,
"data"
=>
array
(
"username"
=>
$username
)));
echo
json_encode
(
array
(
"status"
=>
"success"
,
"data"
=>
array
(
"username"
=>
$username
)));
...
...
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