Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sucs-site
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sucssite
sucs-site
Compare revisions
b7dcdce08b19a86081821d5ed831f30664e501c0 to e7d6944250ff28826ba52c09e55bceb1b03bb551
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
sucssite/sucs-site
Select target project
No results found
e7d6944250ff28826ba52c09e55bceb1b03bb551
Select Git revision
Branches
beta
master
sucs-site
Swap
Target
sucssite/sucs-site
Select target project
osian/sucs-site
kais58/sucs-site
imranh/sucs-site
foshjedi2004/sucs-site
gigosaurus/sucs-site
matstn/sucs-site
ripp_/sucs-site
eggnog/sucs-site
sucssite/sucs-site
elbows/sucs-site
realitykiller/sucs-site
crox/sucs-site
vectre/sucs-site
welshbyte/sucs-site
paperclipman/sucs-site
15 results
b7dcdce08b19a86081821d5ed831f30664e501c0
Select Git revision
Branches
beta
master
sucs-site
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Close #37: untested fix for using symlinks to view files as the apache user
· c1fe7de7
Imran Hussain
authored
8 years ago
c1fe7de7
Merge branch 'master' of projects.sucs.org:sucssite/sucs-site
· e7d69442
Imran Hussain
authored
8 years ago
e7d69442
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
components/members.php
+2
-2
2 additions, 2 deletions
components/members.php
with
2 additions
and
2 deletions
components/members.php
View file @
e7d69442
...
...
@@ -48,11 +48,11 @@ if ($session->loggedin) {
$homedir
=
explode
(
'/'
,
$usernames
[
0
][
'homedir'
]);
$usernames
[
0
][
'acctype'
]
=
ucfirst
(
$homedir
[
2
]);
// Project
if
(
file_exists
(
$usernames
[
0
][
'homedir'
]
.
'/.project'
))
{
if
(
file_exists
(
$usernames
[
0
][
'homedir'
]
.
'/.project'
)
&&
!
is_link
(
$usernames
[
0
][
'homedir'
]
.
'/.project'
))
{
$usernames
[
0
][
'project'
]
=
file_get_contents
(
$usernames
[
0
][
'homedir'
]
.
'/.project'
);
}
// Plan
if
(
file_exists
(
$usernames
[
0
][
'homedir'
]
.
'/.plan'
))
{
if
(
file_exists
(
$usernames
[
0
][
'homedir'
]
.
'/.plan'
)
&&
!
is_link
(
$usernames
[
0
][
'homedir'
]
.
'/.plan'
))
{
$usernames
[
0
][
'plan'
]
=
file_get_contents
(
$usernames
[
0
][
'homedir'
]
.
'/.plan'
);
}
// Website
...
...
This diff is collapsed.
Click to expand it.