MDL-22061 fixed recent regression

This commit is contained in:
Petr Skoda 2010-04-11 21:13:45 +00:00
parent 859b00d0cc
commit f496ada583
2 changed files with 2 additions and 2 deletions

View File

@ -3158,7 +3158,7 @@ function is_enabled_auth($auth) {
*
* @global object
* @param string $auth name of authentication plugin
* @return object An instance of the required authentication plugin.
* @return auth_plugin_base An instance of the required authentication plugin.
*/
function get_auth_plugin($auth) {
global $CFG;

View File

@ -3439,7 +3439,7 @@ class html_list_progress_trace extends progress_trace {
* @return string
*/
function auth_get_plugin_title($authtype) {
$authtitle = get_string("auth_{$authtype}title", "auth_{$authtype}");
return get_string("auth_{$authtype}title", "auth_{$authtype}");
}
/**