From dd9a2dcc75bb94bcee53892a703f5cbe5c123ae2 Mon Sep 17 00:00:00 2001 From: tjhunt Date: Thu, 11 Oct 2007 16:45:43 +0000 Subject: [PATCH] MDL-11699 - Addendum - fix typo in fixup code. Sorry. --- lib/weblib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/weblib.php b/lib/weblib.php index 5d428369db..f1ff0575b4 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -3432,7 +3432,7 @@ function build_navigation($extranavlinks, $cm = null) { debugging('The field $cm->name should be set if you call build_navigation with '. 'a $cm parameter. If you get $cm using get_coursemodule_from_instance or ', 'get_coursemodule_from_id, this will be done automatically.', DEBUG_DEVELOPER); - if (!$cm->modname = get_field($cm->modname, 'name', 'id', $cm->instance)) { + if (!$cm->name = get_field($cm->modname, 'name', 'id', $cm->instance)) { error('Cannot get the module name in build navigation.'); } } -- 2.39.5