Skip to content
GitLab
Explore
Sign in
Commits on Source (5)
Sometimes the little mistakes are hard to spot
· b7dcdce0
Isabel Jenkins
authored
Feb 20, 2017
b7dcdce0
Close #37: untested fix for using symlinks to view files as the apache user
· c1fe7de7
Imran Hussain
authored
Mar 31, 2017
c1fe7de7
Merge branch 'master' of projects.sucs.org:sucssite/sucs-site
· e7d69442
Imran Hussain
authored
Mar 31, 2017
e7d69442
Merge branch 'master' into beta
· 70eb93ea
Imran Hussain
authored
Mar 31, 2017
70eb93ea
Merge branch 'beta' into sucs-site
· 3e35d149
Imran Hussain
authored
Mar 31, 2017
3e35d149
Hide whitespace changes
Inline
Side-by-side
components/members.php
View file @
3e35d149
...
...
@@ -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
...
...
static/About/History.txt
View file @
3e35d149
...
...
@@ -29,7 +29,7 @@
</td>
<td><a href="/~elbows">elbows</a> (Laurence Sebastian Bowes)</td>
<td><a href="/~unreturnable">unreturnable</a> (Isabel Jenkins)</td>
<td><a href="/~coatlus">coatlus</a> (
Megan Warren-Davis
)</td>
<td><a href="/~coatlus">coatlus</a> (
Quetzal Mac Creamer Shorey
)</td>
<td><a href="/~andy">andy</a> (Andrew Vincent Pover)</td>
<td><a href="/~gigosaurus">gigosaurus</a> (Christopher Lindsay Manners)</td>
</tr>
...
...