Show Likes

This section allows you to view all posts where this member received or gave a like to.

1
Bug reports / Re: YouTube Videos not Fullscreen
Franky « on July 19th, 2017, 05:04 PM »
Great many Thanks. works fine :)
2
Have now the source identified that causes the bug. It is the function of the aeva media gallery.:
Quote
Added transparency flag to pictures, and functions to determine transparency
This is the error message:
Quote
The database value you're trying to insert does not exist: id_file
Function: aeva_resetTransparency
The value id_file but is available, see attachment database_transparency.JPG
3
Although the issue is so old. The bug is still. I could solve it for SMF and for Wedge.

SMF
Aeva-Subs.php (Version 2.10) line 3721
Code: [Select]
WHERE id_file = {int:id_file}',
change to
Code: [Select]
WHERE id_file = id_file',

Wedge
Subs-Media.php line 3600
Code: [Select]
WHERE id_file = {int:id_file}',
change to
Code: [Select]
WHERE id_file = id_file',