From e28c2fb806261cc677f83ecfee613e5dcc4ac564 Mon Sep 17 00:00:00 2001 From: "henning.bostelmann" Date: Thu, 1 Aug 2024 13:19:03 +0200 Subject: [PATCH] CONTRIB-9626 remove unused property from action_link --- renderable.php | 1 - 1 file changed, 1 deletion(-) diff --git a/renderable.php b/renderable.php index dfd6d318..25b9e4da 100644 --- a/renderable.php +++ b/renderable.php @@ -348,7 +348,6 @@ public function action_link(moodle_url $url, $titlekey, $iconkey, $confirmkey = $confirmaction = new confirm_action(get_string($confirmkey, 'scheduler')); } $act = new action_link($url, $title, $confirmaction, $attributes, $pix); - $act->primary = false; return $act; }