mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 13:02:07 +02:00
Mnet: Minor oops - a variable in the last commit was not renamed
This commit is contained in:
parent
47151d683e
commit
503d126273
@ -209,7 +209,7 @@ class mnet_xmlrpc_client {
|
||||
$openssl_history = array();
|
||||
set_config('openssl_history', serialize($openssl_history), 'mnet');
|
||||
} else {
|
||||
$openssl_history = unserialize($result);
|
||||
$openssl_history = unserialize($openssl_history);
|
||||
}
|
||||
foreach($openssl_history as $keyset) {
|
||||
$keyresource = openssl_pkey_get_private($keyset['keypair_PEM']);
|
||||
|
@ -150,7 +150,7 @@ function mnet_server_strip_wrappers($HTTP_RAW_POST_DATA) {
|
||||
$openssl_history = array();
|
||||
set_config('openssl_history', serialize($openssl_history), 'mnet');
|
||||
} else {
|
||||
$openssl_history = unserialize($result);
|
||||
$openssl_history = unserialize($openssl_history);
|
||||
}
|
||||
foreach($openssl_history as $keyset) {
|
||||
$keyresource = openssl_pkey_get_private($keyset['keypair_PEM']);
|
||||
|
Loading…
x
Reference in New Issue
Block a user