From e6758efa377c254002fdef11573919f705c7620c Mon Sep 17 00:00:00 2001 From: David Herney Date: Wed, 8 May 2024 22:21:46 -0500 Subject: [PATCH] Fixed Edit Buttons Disappearing #169 --- lib.php | 2 +- version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib.php b/lib.php index b811bdd..73215c1 100644 --- a/lib.php +++ b/lib.php @@ -135,7 +135,7 @@ protected function __construct($format, $courseid) { $scope = []; } - $pagesavailable = ['course-view-onetopic', 'course-view']; + $pagesavailable = ['course-view-onetopic', 'course-view', 'lib-ajax-service']; if (!in_array($PAGE->pagetype, $pagesavailable)) { diff --git a/version.php b/version.php index 4b103b3..71bf67e 100644 --- a/version.php +++ b/version.php @@ -24,7 +24,7 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2022081610; // The current plugin version (Date: YYYYMMDDXX). +$plugin->version = 2022081610.01; // The current plugin version (Date: YYYYMMDDXX). $plugin->requires = 2022041902; // Requires this Moodle version. $plugin->component = 'format_onetopic'; // Full name of the plugin (used for diagnostics). $plugin->maturity = MATURITY_STABLE;