Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Callum Massey
sucs-site
Commits
1e8fa139
Commit
1e8fa139
authored
Apr 26, 2015
by
Imran Hussain
Browse files
Fix r702 sneaking in a smarty 2 function
parent
93511244
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/banana-admin.php
View file @
1e8fa139
...
...
@@ -26,14 +26,14 @@ if (isset($session->groups[$permission])) {
if
(
trim
(
$_POST
[
'why'
])
!==
""
)
{
$number
=
intval
(
$_POST
[
'number'
]);
$why
=
$_POST
[
'why'
];
$why
=
$_POST
[
'why'
];
if
(
(
abs
(
$number
)
<=
$maxbanana
)
&&
$number
<>
0
){
$DB
->
Query
(
"INSERT INTO awards (username, score, whn, who, why) VALUES (?,?,NOW(),?,?)"
,
array
(
$who
,
$number
,
$session
->
username
,
$why
));
header
(
"Location: "
.
$_SERVER
[
'PHP_SELF'
]);
header
(
"Location: "
.
$_SERVER
[
'PHP_SELF'
]);
}
}
// Checks for a nonzero banana and denies awarding if it's zero
elseif
(
$number
==
0
){
trigger_error
(
"Come on "
.
$session
->
username
.
", enter a nonzero value please"
);
...
...
@@ -45,14 +45,14 @@ if (isset($session->groups[$permission])) {
}
else
{
trigger_error
(
"No reason entered for the awarding of bananas."
,
E_USER_WARNING
);
}
}
}
}
elseif
(
$session
->
loggedin
)
{
if
(
$_REQUEST
[
'action'
]
==
"award"
)
{
$number
=
intval
(
$_POST
[
'number'
]);
$why
=
$_POST
[
'why'
];
$why
=
$_POST
[
'why'
];
// Send a mail to someone about them bananas
// Send a mail to someone about them bananas
$msgbody
=
$session
->
username
.
" thinks
$who
deserves
$number
bananas:
\r\n
"
;
$msgbody
.
=
"
\"
$why
\"\r\n\r\n
Visit https://sucs.org/Community/Members/
$who
if you want to make an award."
;
mail
(
$contact
,
"Banana Award Nomination"
,
$msgbody
,
$msgheaders
);
...
...
@@ -62,7 +62,7 @@ if (isset($session->groups[$permission])) {
}
$secondary
=
$smarty
->
get
_t
emplate
_v
ars
(
"secondary"
);
$secondary
=
$smarty
->
get
T
emplate
V
ars
(
"secondary"
);
$secondary
.
=
$smarty
->
fetch
(
'banana-award.tpl'
);
$smarty
->
assign
(
'secondary'
,
$secondary
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment