Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
chris18890 authored Dec 13, 2023
1 parent d165e91 commit a6520ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crm/modules/member/form.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -668,9 +668,10 @@ function plan_import_form () {
function member_renotify_form () {
global $db_connect;
$sql = "
SELECT *
FROM `user` JOIN contact USING(cid)
ORDER BY firstName, LastName";
SELECT *
FROM `user` JOIN contact USING(cid)
ORDER BY firstName, LastName
";
$res = mysqli_query($db_connect, $sql);
if (!$res) crm_error(mysqli_error($res));
$fields = array();
Expand All @@ -686,11 +687,10 @@ function member_renotify_form () {
'type' => 'submit'
, 'value' => 'Renotify'
));

return array(
'type' => 'form'
, 'method' => 'post'
, 'command' => 'member_renotify'
, 'fields' => $fields
);
}
}

0 comments on commit a6520ac

Please sign in to comment.