Merge branch 'wip-MDL-28948-MOODLE_21_STABLE' of git://github.com/abgreeve/moodle into MOODLE_21_STABLE
This commit is contained in:
+2
-2
@@ -6814,7 +6814,7 @@ class emoticon_manager {
|
||||
* @return string The now encrypted data
|
||||
*/
|
||||
function rc4encrypt($data) {
|
||||
$password = 'nfgjeingjk';
|
||||
$password = get_site_identifier();
|
||||
return endecrypt($password, $data, '');
|
||||
}
|
||||
|
||||
@@ -6827,7 +6827,7 @@ function rc4encrypt($data) {
|
||||
* @return string The now decrypted data
|
||||
*/
|
||||
function rc4decrypt($data) {
|
||||
$password = 'nfgjeingjk';
|
||||
$password = get_site_identifier();
|
||||
return endecrypt($password, $data, 'de');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user