Mnet: Minor oops - a variable in the last commit was not renamed

This commit is contained in:
donal72 2007-01-17 03:56:31 +00:00
parent 47151d683e
commit 503d126273
2 changed files with 2 additions and 2 deletions

View File

@ -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']);

View File

@ -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']);