Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
ucare_app
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
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Digital Experience Group
ucare_app
Commits
bc667bca
Commit
bc667bca
authored
14 years ago
by
Brett Bieber
Browse files
Options
Downloads
Patches
Plain Diff
make sure the endorsements are being sent
parent
a6d76af2
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/UNL/UCARE/Year1Application.php
+12
-3
12 additions, 3 deletions
src/UNL/UCARE/Year1Application.php
with
12 additions
and
3 deletions
src/UNL/UCARE/Year1Application.php
+
12
−
3
View file @
bc667bca
...
@@ -110,10 +110,19 @@ You will be asked to comment on the ability of the student to carry out the prop
...
@@ -110,10 +110,19 @@ You will be asked to comment on the ability of the student to carry out the prop
You must log in using your My.UNL (Blackboard) username and password to complete the application. Access the application at the link below:<br />
You must log in using your My.UNL (Blackboard) username and password to complete the application. Access the application at the link below:<br />
<a href="'
.
UNL_UCARE_Controller
::
getURL
()
.
'?view=sponsor">'
.
UNL_UCARE_Controller
::
getURL
()
.
'?view=sponsor</a></p>'
;
<a href="'
.
UNL_UCARE_Controller
::
getURL
()
.
'?view=sponsor">'
.
UNL_UCARE_Controller
::
getURL
()
.
'?view=sponsor</a></p>'
;
$pf
=
new
UNL_Peoplefinder
();
$mail
=
'ldamuth1@unl.edu'
;
$sponsor
=
$pf
->
getUID
(
$this
->
sponsor_uid
);
UNL_UCARE_Controller
::
sendHTMLEmail
(
$sponsor
->
mail
,
'UCARE Application'
,
$text
);
if
(
$sponsor
=
json_decode
(
file_get_contents
(
'http://peoplefinder.unl.edu/?uid='
.
$this
->
sponsor_uid
.
'&format=json'
),
true
))
{
if
(
isset
(
$sponsor
[
'mail'
]))
{
if
(
is_array
(
$sponsor
[
'mail'
]))
{
$mail
=
$sponsor
[
'mail'
][
0
];
}
else
{
$mail
=
$sponsor
[
'mail'
];
}
}
}
UNL_UCARE_Controller
::
sendHTMLEmail
(
$mail
,
'UCARE Application'
,
$text
);
}
}
function
emailApplicant
()
function
emailApplicant
()
...
...
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