try and guess mimetype for openid profile photo
This commit is contained in:
parent
bf6c72fc0e
commit
4d049741ef
@ -127,6 +127,8 @@ function openid_content(&$a) {
|
|||||||
elseif($photo_other)
|
elseif($photo_other)
|
||||||
$pphoto = $photo_other;
|
$pphoto = $photo_other;
|
||||||
|
|
||||||
|
$mimetype = guess_image_type($pphoto);
|
||||||
|
|
||||||
$x = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_mimetype,
|
$x = q("insert into xchan ( xchan_hash, xchan_guid, xchan_guid_sig, xchan_pubkey, xchan_photo_mimetype,
|
||||||
xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_follow, xchan_connpage, xchan_name, xchan_network, xchan_photo_date,
|
xchan_photo_l, xchan_addr, xchan_url, xchan_connurl, xchan_follow, xchan_connpage, xchan_name, xchan_network, xchan_photo_date,
|
||||||
xchan_name_date, xchan_flags)
|
xchan_name_date, xchan_flags)
|
||||||
@ -135,7 +137,7 @@ function openid_content(&$a) {
|
|||||||
dbesc(''),
|
dbesc(''),
|
||||||
dbesc(''),
|
dbesc(''),
|
||||||
dbesc(''),
|
dbesc(''),
|
||||||
dbesc('image/jpeg'),
|
dbesc($mimetype),
|
||||||
dbesc($pphoto),
|
dbesc($pphoto),
|
||||||
dbesc($addr),
|
dbesc($addr),
|
||||||
dbesc($url),
|
dbesc($url),
|
||||||
|
Reference in New Issue
Block a user