Juto got a reaction from
Pronux in Tab Menu Section (TMS) and Pronux TMS For Admin Support Thread
Here it is:
Warning: Unknown property ”-moz-outline”. Ignored statement.
Result: 0 errors / 17 warnings
line 327 column 310 - Warning: <a> attribute ";" lacks value
line 327 column 463 - Warning: unescaped & or unknown entity "&pID"
line 327 column 470 - Warning: unescaped & or unknown entity "&action"
line 327 column 911 - Warning: <a> attribute ";" lacks value
line 327 column 1064 - Warning: unescaped & or unknown entity "&pID"
line 327 column 1071 - Warning: unescaped & or unknown entity "&action"
line 327 column 1512 - Warning: <a> attribute ";" lacks value
line 327 column 1665 - Warning: unescaped & or unknown entity "&pID"
line 327 column 1672 - Warning: unescaped & or unknown entity "&action"
line 327 column 2113 - Warning: <a> attribute ";" lacks value
line 327 column 2266 - Warning: unescaped & or unknown entity "&pID"
line 327 column 2273 - Warning: unescaped & or unknown entity "&action"
line 327 column 310 - Warning: <a> proprietary attribute "hidefocus"
line 327 column 911 - Warning: <a> proprietary attribute "hidefocus"
line 327 column 1512 - Warning: <a> proprietary attribute "hidefocus"
line 327 column 2113 - Warning: <a> proprietary attribute "hidefocus"
line 327 column 4710 - Warning: <script> inserting "type" attribute
Two fixes: soft is not valid
// $TMS->tab[$tabNo]['content'] = tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id'])));
$TMS->tab[$tabNo]['content'] = tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', '70', '15', (isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id'])), 'style="white-space:pre-line;"');
// $TMS->tab[$tabNo]['content'] = str_ireplace('<textarea ', '<textarea style="width: 100%; height: 100%" ', $TMS->tab[$tabNo]
Should be:
$TMS->tab[$tabNo]['content'] = str_ireplace('<textarea ', '<textarea style="width: 100%; height: 100%;" ', $TMS->tab[$tabNo]
['content']);
Sara