Changeset 711
- Timestamp:
- 01/04/10 17:42:17 (2 years ago)
- Location:
- trunk/phpbms
- Files:
-
- 2 modified
-
include/search_class.php (modified) (6 diffs)
-
modules/bms/invoices_addresses_ajax.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/include/search_class.php
r705 r711 612 612 613 613 <label for="find">find</label><br /> 614 <select name="find" id="find" >614 <select name="find" id="find" tabindex="1"> 615 615 <?php 616 616 … … 638 638 639 639 <label for="startswithfield">where</label><br /> 640 <select name="startswithfield" id="startswithfield" >640 <select name="startswithfield" id="startswithfield" tabindex="1"> 641 641 <?php 642 642 … … 665 665 666 666 <p id="bstSearchButtonP" class="big"> 667 <input name="command" id="searchbutton" type="submit" class="Buttons" value="search" />667 <input name="command" id="searchbutton" type="submit" class="Buttons" value="search" tabindex="2"/> 668 668 </p> 669 669 … … 671 671 672 672 <label for="startswith">starts with</label><br /> 673 <input id="startswith" name="startswith" type="text" value="<?php if($this->querytype=="search" and isset($this->savedstartswith)) echo formatVariable($this->savedstartswith) ?>" size="35" maxlength="128" />673 <input id="startswith" name="startswith" type="text" value="<?php if($this->querytype=="search" and isset($this->savedstartswith)) echo formatVariable($this->savedstartswith) ?>" size="35" maxlength="128" tabindex="1"/> 674 674 675 675 </p> … … 677 677 678 678 <p id="bstSelectionP"> 679 <select name="Selection" >679 <select name="Selection" tabindex="2"> 680 680 <option value="new" <?php if ($this->querytype!="search" or ($this->querytype=="search" and $this->savedselection=="new") ) echo "selected=\"selected\""?> >new result</option> 681 681 <option value="add" <?php if ($this->querytype=="search" and $this->savedselection=="add")echo "selected=\"selected\""?>>add to result</option> … … 686 686 687 687 <p id="bstResetButtonP"> 688 <input name="command" type="submit" id="reset" class="smallButtons" value="reset" accesskey="t" title="(access key+t)" />688 <input name="command" type="submit" id="reset" class="smallButtons" value="reset" accesskey="t" title="(access key+t)" tabindex="2"/> 689 689 </p> 690 690 -
trunk/phpbms/modules/bms/invoices_addresses_ajax.php
r702 r711 62 62 WHERE 63 63 addresstorecord.tabledefid = 'tbld:6d290174-8b73-e199-fe6c-bcf3d4b61083' 64 AND addresstorecord.recordid = '".mysql_real_escape_string($uuid)."' 65 "; 64 AND addresstorecord.recordid = '".mysql_real_escape_string($uuid)."'"; 66 65 67 66 return $this->db->query($querystatement); … … 131 130 addresses 132 131 WHERE 133 uuid ='".mysql_real_escape_string($uuid)."' 134 "; 132 uuid ='".mysql_real_escape_string($uuid)."'"; 135 133 136 134 $therecord = $this->db->fetchArray($this->db->query($querystatement));