Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
55860549
Commit
55860549
authored
12 years ago
by
Georg Ehrke
Browse files
Options
Downloads
Patches
Plain Diff
fix c&p fail from earlier commit today
parent
faf702b9
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/user.php
+1
-1
1 addition, 1 deletion
lib/user.php
lib/user/database.php
+1
-1
1 addition, 1 deletion
lib/user/database.php
lib/user/http.php
+1
-1
1 addition, 1 deletion
lib/user/http.php
with
3 additions
and
3 deletions
lib/user.php
+
1
−
1
View file @
55860549
...
@@ -350,7 +350,7 @@ class OC_User {
...
@@ -350,7 +350,7 @@ class OC_User {
}
}
}
}
}
}
return
OC_Config
::
getValue
(
"datadirectory"
,
OC
::
$SERVERROOT
.
"/data"
)
.
'/'
.
$u
ser
;
return
OC_Config
::
getValue
(
"datadirectory"
,
OC
::
$SERVERROOT
.
"/data"
)
.
'/'
.
$u
id
;
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
lib/user/database.php
+
1
−
1
View file @
55860549
...
@@ -183,7 +183,7 @@ class OC_User_Database extends OC_User_Backend {
...
@@ -183,7 +183,7 @@ class OC_User_Database extends OC_User_Backend {
*/
*/
public
function
getHome
(
$uid
){
public
function
getHome
(
$uid
){
if
(
$this
->
userExists
(
$uid
)){
if
(
$this
->
userExists
(
$uid
)){
return
OC_Config
::
getValue
(
"datadirectory"
,
OC
::
$SERVERROOT
.
"/data"
)
.
'/'
.
$u
ser
;
return
OC_Config
::
getValue
(
"datadirectory"
,
OC
::
$SERVERROOT
.
"/data"
)
.
'/'
.
$u
id
;
}
else
{
}
else
{
return
false
;
return
false
;
}
}
...
...
This diff is collapsed.
Click to expand it.
lib/user/http.php
+
1
−
1
View file @
55860549
...
@@ -98,7 +98,7 @@ class OC_User_HTTP extends OC_User_Backend {
...
@@ -98,7 +98,7 @@ class OC_User_HTTP extends OC_User_Backend {
*/
*/
public
function
getHome
(
$uid
){
public
function
getHome
(
$uid
){
if
(
$this
->
userExists
(
$uid
)){
if
(
$this
->
userExists
(
$uid
)){
return
OC_Config
::
getValue
(
"datadirectory"
,
OC
::
$SERVERROOT
.
"/data"
)
.
'/'
.
$u
ser
;
return
OC_Config
::
getValue
(
"datadirectory"
,
OC
::
$SERVERROOT
.
"/data"
)
.
'/'
.
$u
id
;
}
else
{
}
else
{
return
false
;
return
false
;
}
}
...
...
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