Custom buttons missing on Forms

Has anyone upgrade to SC5.004? Any forms that have custom buttons (grids are fine) are not displayed after compiled. I have tried changing to a SC5 template and a few others, but the buttons are missing. I noticed they changed how the buttons are created:

002; displays


<input type="button" id="sc_button_respond_request_top" onClick="sc_btn_button_respond_request(); return false" class="scButton_default" value="Respond"" . $sCondStyle . ">

004; does not display


<input type="button" id="sc_button_respond_request_top" onClick="sc_btn_button_respond_request(); return false" class="scButton_default" value="Respond" style="<?php echo $sCondStyle; ?>">

<?php
$NM_btn = true;
?> 

Can anyone confirm this?

Regards,
Scott.

Removing ‘style=’ displays correctly in 004

$sCondStyle resolves as: ‘display: none’;


<input type="button" id="sc_button_respond_request_top" onClick="sc_btn_button_respond_request(); return false" class="scButton_default" value="Respond"."<?php echo $sCondStyle; ?>">

Regards,
Scott.