Closed Bruno21 closed 10 years ago
1_ There is a < /picture > tag which is not open:
Line 111
$html = '<!--[if IE 9]><video style="display: none;"><![endif]-->';
should be
$html .= '<!--[if IE 9]><video style="display: none;"><![endif]-->';
2_ There is 2x $alt variable in printHDImageThumb function:
Line 456
function printHDImageThumb($alt, $hd = false, $alt = NULL, $class = NULL, $id = NULL, $imgobj = null) {
function printHDImageThumb($hd = false, $alt = NULL, $class = NULL, $id = NULL, $imgobj = null) {
3_ Variable $option in function getOptionsSupported() is not defined Line 456
array(gettext('HD thumb quality') => array('key' => 'zp_picturefill_thumbquality', 'type' => OPTION_TYPE_TEXTBOX,``` should be
$option = array(gettext('HD thumb quality') => array('key' => 'zp_picturefill_thumbquality', 'type' => OPTION_TYPE_TEXTBOX,```
You can stare on things for hours and still miss them… Indeed thanks very much.
1_ There is a < /picture > tag which is not open:
Line 111
should be
2_ There is 2x $alt variable in printHDImageThumb function:
Line 456
should be
3_ Variable $option in function getOptionsSupported() is not defined Line 456