Merge branch 'MDL-44088-master' of git://github.com/andrewnicols/moodle

This commit is contained in:
Dan Poltawski 2014-12-16 11:20:29 +00:00
commit 52a7001bc2

View File

@ -3900,17 +3900,12 @@ function count_login_failures($mode, $username, $lastlogin) {
}
/**
* Returns whether ajax is enabled/allowed or not.
* This function is deprecated and always returns true.
* It should no longer be required to work without JavaScript enabled.
*
* @param array $unused - not used any more.
* @return bool
* @deprecated since 2.7 MDL-33099 - please do not use this function any more.
* @todo MDL-44088 This will be removed in Moodle 2.9.
* @deprecated since 2.7 MDL-33099/MDL-44088 - please do not use this function any more.
*/
function ajaxenabled(array $browsers = null) {
debugging('ajaxenabled() is deprecated - please update your code to assume it returns true.', DEBUG_DEVELOPER);
return true;
throw new coding_exception('ajaxenabled() can not be used anymore. Update your code to work with JS at all times.');
}
/**