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.
This commit is contained in:
Dan Poltawski 2012-05-03 18:30:18 +08:00
parent 2c3d986894
commit 10cdacfecb

View File

@ -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;
}