1
0
Fork 0
mirror of https://github.com/RaspbianFrance/raspisms.git synced 2025-10-28 11:34:01 +01:00

fix md5 null

This commit is contained in:
OsaAjani 2015-12-09 19:32:34 +01:00
commit e80adddf93

View file

@ -95,7 +95,7 @@
'date' => htmlspecialchars($received['at']),
'text' => htmlspecialchars($received['content']),
'type' => 'received',
'md5' => md5($received),
'md5' => md5($received['at'] . $received['content']),
);
}