Skip to content

Commit ecda97b

Browse files
committed
[Applications] fixed deprecated php each function
1 parent 0e765db commit ecda97b

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

module/Applications/src/Controller/ManageController.php

+7-3
Original file line numberDiff line numberDiff line change
@@ -391,9 +391,13 @@ public function statusAction()
391391
$form = $this->forms->get('Applications/Mail');
392392
$form->populateValues($params);
393393

394-
395-
396-
$recipient = $params['to'];
394+
$to = $params['to'];
395+
$email = key($to);
396+
$name = $to[$email];
397+
$recipient = [
398+
'email' => $email,
399+
'name' => $name,
400+
];
397401

398402
return [
399403
'recipient' => $recipient,

module/Applications/view/applications/manage/status.phtml

+1-6
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,8 @@ $form->get('mailText')->setAttribute('style', 'height: 250px');
1414
?>
1515
<div>
1616
<?php
17-
list ($email, $name) = each ($recipient);
18-
if (is_int($email)) {
19-
$email = $name;
20-
$name = '';
21-
}
2217

23-
echo sprintf($this->translate("To") . ': ' . '"%s" &lt;%s&gt;<br>', $name, $email);
18+
echo sprintf($this->translate("To") . ': ' . '"%s" &lt;%s&gt;<br>', $recipient['name'], $recipient['email']);
2419

2520
?>
2621
</div>

0 commit comments

Comments
 (0)