From 10cdacfecbe16ca00866d472e726ed01ade19d60 Mon Sep 17 00:00:00 2001 From: Dan Poltawski Date: Thu, 3 May 2012 18:30:18 +0800 Subject: [PATCH] MDL-32508 Remove debuggign warning about callback_format_get_section_url It is not the time to deprecate this callback as we may be doing major changes in 2.4 so removing the warning about it. --- lib/navigationlib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/navigationlib.php b/lib/navigationlib.php index 2aa79fea4f2..f4b89df4288 100644 --- a/lib/navigationlib.php +++ b/lib/navigationlib.php @@ -1763,8 +1763,8 @@ class global_navigation extends navigation_node { $urlfunction = 'callback_'.$courseformat.'_get_section_url'; if (function_exists($urlfunction)) { - debugging('Depricated callback_'.$courseformat.'_get_section_url in use. - Please switch your code to use the standard section url param'); + // This code path is deprecated but we decided not to warn developers as + // major changes are likely to follow in 2.4. See MDL-32504. } else { $urlfunction = null; } -- 2.43.0