Skip to content

Commit

Permalink
Merge branch 'MDL-38373_23' of git://github.com/stronk7/moodle into M…
Browse files Browse the repository at this point in the history
…OODLE_23_STABLE
  • Loading branch information
Damyon Wiese committed Mar 20, 2013
2 parents 417c261 + d312ce8 commit d3a9460
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/pear/Auth/RADIUS.php
Expand Up @@ -46,7 +46,7 @@
* @version $Revision$
*/

PEAR::loadExtension('radius');
// PEAR::loadExtension('radius'); // Moodle commented. See MDL-38373.

/**
* class Auth_RADIUS
Expand Down Expand Up @@ -127,6 +127,7 @@ class Auth_RADIUS extends PEAR {
*/
function Auth_RADIUS()
{
$this->loadExtension('radius'); // Moodle added. See MDL-38373.
$this->PEAR();
}

Expand Down
6 changes: 6 additions & 0 deletions lib/pear/README_MOODLE.txt
@@ -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
=================
Expand Down

0 comments on commit d3a9460

Please sign in to comment.