From 7b5bd0602b738a222c050782d7a523ba071415a7 Mon Sep 17 00:00:00 2001 From: tjhunt Date: Fri, 17 Jul 2009 03:40:40 +0000 Subject: [PATCH] formslib: moodleform_mod needs to be abstract too. (See one of the commits I made yesterday.) --- course/moodleform_mod.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/course/moodleform_mod.php b/course/moodleform_mod.php index cdf354777b..fc476a8f3d 100644 --- a/course/moodleform_mod.php +++ b/course/moodleform_mod.php @@ -9,7 +9,7 @@ if (!empty($CFG->enablecompletion) or !empty($CFG->enableavailability)) { * add / update forms (mod/{modname}.mod_form.php replaces deprecated mod/{modname}/mod_form.php * */ -class moodleform_mod extends moodleform { +abstract class moodleform_mod extends moodleform { /** Current data */ protected $current; /** -- 2.39.5