VirtueMart Forum

VirtueMart Dev/Coding Central: VM1 (old version) => Quality & Testing VirtueMart 1.1.x => Virtuemart 1.1 Development (Archiv) => Q&T Resolved => Topic started by: doorknob on July 13, 2008, 20:40:50 PM

Title: [FIXED] Bugs in shop.search.php
Post by: doorknob on July 13, 2008, 20:40:50 PM
A couple of issues that cause xhtml compliance issues:
Line 86 is not properly terminated
            <input type="submit" class="button" name="search" value="<?php echo $VM_LANG->_('PHPSHOP_SEARCH_TITLE'?>">

should be
            <input type="submit" class="button" name="search" value="<?php echo $VM_LANG->_('PHPSHOP_SEARCH_TITLE'?>" />


and on line 104 the script tag has no type
      <script>

should be
      <script type="text/javascript">

regards
Phil
Title: Re: Bugs in shop.search.php
Post by: gregdev on July 14, 2008, 20:16:54 PM
Thanks. Fixed in SVN rev. 1470.

Greg