Hello,
After updating T4 System Plugin from 2.5.4 to 2.6.1, the following PHP warning appears:
Warning: Undefined property: stdClass::$image_fulltext in
plugins/system/t4/themes/base/html/com_content/article/default.php on line 35
Line 35:
$og_iamge = $images->image_intro ?: $images->image_fulltext;
I tried changing this line to the following, and the warning no longer appears:
$og_iamge = $images->image_intro ?? $images->image_fulltext ?? '';
Environment:
- PHP 8.3.32
- MariaDB 10.11.17
- LiteSpeed
- Joomla 5.4.6
- T4 System Plugin 2.6.1
Thanks