1
0
mirror of https://github.com/moodle/moodle.git synced 2025-04-24 18:04:43 +02:00

Merge branch 'MDL-38373' of git://github.com/stronk7/moodle

This commit is contained in:
Damyon Wiese 2013-03-20 11:05:38 +08:00
commit 80d852fa23
2 changed files with 8 additions and 1 deletions

@ -46,7 +46,7 @@ require_once 'PEAR.php';
* @version $Revision$
*/
PEAR::loadExtension('radius');
// PEAR::loadExtension('radius'); // Moodle commented. See MDL-38373.
/**
* class Auth_RADIUS
@ -127,6 +127,7 @@ class Auth_RADIUS extends PEAR {
*/
function Auth_RADIUS()
{
$this->loadExtension('radius'); // Moodle added. See MDL-38373.
$this->PEAR();
}

@ -1,6 +1,12 @@
MOODLE-SPECIFIC PEAR MODIFICATIONS
==================================
Auth/RADIUS
===========
1/ Changed static call to correct alternative (MDL-38373):
- From: PEAR::loadExtension('radius'); (in global scope)
- To: $this->loadExtension('radius'); (in constructor)
Spreadsheet/Excel
=================