Cache xface images based on hash of X-Face instead of mid
This commit is contained in:
parent
eaba9ea4ec
commit
2197f3da85
|
@ -624,7 +624,7 @@ function message_show($group,$id,$attachment=0,$article_data=false,$maxlen=false
|
||||||
show_header($head,$group,$local_poster);
|
show_header($head,$group,$local_poster);
|
||||||
// X-Face
|
// X-Face
|
||||||
if ($face = display_full_headers($head->number,$group,$head->name,$head->from,true)) {
|
if ($face = display_full_headers($head->number,$group,$head->name,$head->from,true)) {
|
||||||
$pngfile = '../tmp/face-'.preg_replace("/[^A-Za-z0-9 ]/", '', $head->id);
|
$pngfile = '../tmp/face-'.hash('ripemd160', $face);
|
||||||
if(file_exists($pngfile)) {
|
if(file_exists($pngfile)) {
|
||||||
echo '<img align="right" src="'.$pngfile.'">';
|
echo '<img align="right" src="'.$pngfile.'">';
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue