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
70eb93ea8e870a62d93bdf23798453be4d49956e to 92f40d62319fdc7e651f769d7f33ef92b33b85f4
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
92f40d62319fdc7e651f769d7f33ef92b33b85f4
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
70eb93ea8e870a62d93bdf23798453be4d49956e
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)
stop .forward file being a symlink
· b13af1e6
Chris Piper
authored
8 years ago
b13af1e6
Merge branch 'master' into beta
· 92f40d62
Imran Hussain
authored
8 years ago
92f40d62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/session.php
+1
-1
1 addition, 1 deletion
lib/session.php
with
1 addition
and
1 deletion
lib/session.php
View file @
92f40d62
...
...
@@ -228,7 +228,7 @@ class Session
// the bash script returns 0 for no and 1 for yes, takes one arg, username
$this
->
email
=
shell_exec
(
"../plugins/sucsunreadmail
$user
"
);
if
(
file_exists
(
$info
[
'homedirectory'
][
0
]
.
"/.forward"
))
{
if
(
file_exists
(
$info
[
'homedirectory'
][
0
]
.
"/.forward"
)
&&
!
is_link
(
$info
[
'homedirectory'
][
0
]
.
"/.forward"
))
{
$forward
=
file
(
$info
[
'homedirectory'
][
0
]
.
"/.forward"
);
$this
->
email_forward
=
preg_replace
(
"/
\n
/"
,
""
,
$forward
[
0
]);
}
...
...
This diff is collapsed.
Click to expand it.