Changeset 728 for trunk/phpbms/loadsearch.php
- Timestamp:
- 01/07/10 12:45:17 (2 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/loadsearch.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/loadsearch.php
r726 r728 249 249 </p> 250 250 <p> 251 <textarea id="LSSQL" rows="8" cols="10" <?php if(!hasRights($tableinfo["advsearchroleid"])) echo " readonly=\"readonly\""?>></textarea>251 <textarea id="LSSQL" name="LSSQL" rows="8" cols="10" <?php if(!hasRights($tableinfo["advsearchroleid"])) echo ' readonly="readonly"'?>></textarea> 252 252 </p> 253 253 </td> 254 254 <td valign="top"> 255 <p><br/><input id="LSLoad" type=" button" onclick="LSRunSearch()" class="Buttons" disabled="disabled" value="run search"/></p>255 <p><br/><input id="LSLoad" type="submit" name="command" class="Buttons" disabled="disabled" value="run search"/></p> 256 256 <p><input id="LSDelete" type="button" onclick="LSDeleteSearch('<?php echo APP_PATH ?>')" class="Buttons" disabled="disabled" value="delete"/></p> 257 257 <div id="LSResults"> </div> … … 270 270 if(isset($_GET["cmd"])){ 271 271 272 require_once("include/session.php"); 273 272 274 $thesearch = new savedSearch($db); 273 275