Bug report: Missing parameter
Hi,
I have a bug report regarding the latest version of Betheme. When using related posts, PHP throws a notice regarding a missing parameter $sizeV. This is because the variable never gets defined. On line 1451 in wp-content/themes/betheme/functions/theme-functions.php you define $sizeH, but not $sizeV for related posts. As such, the variable never exists for those.
Adding the missing line fixes it:
$sizeH = 'blog-portfolio';
$sizeV = 'blog-portfolio';
Hope this makes sense.
Comments