Skip to content

Commit

Permalink
fixed: correctly add help text to access field
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalsem committed Jan 10, 2025
1 parent 72f3f2c commit 807ec89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/ColdTrick/BlogTools/FieldsHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class FieldsHandler {
public function __invoke(\Elgg\Event $event): ?array {
$result = $event->getValue();

foreach ($result as $field) {
foreach ($result as &$field) {
if (elgg_extract('name', $field) !== 'access_id') {
continue;
}
Expand Down

0 comments on commit 807ec89

Please sign in to comment.