page.tpl.php blue theme
old code:
[code]
<td>
<table cellpadding="0" cellspacing="0">
<form action="<?=url('search/listing')?>" method="post" name="search_form">
<tr>
<td valign="top">
<input type="text" id="search_box" name="title" value="" name="search_box" />
</td>
<td>
<input type="submit" value="find" id="search_button" style="display:none" />
</td>
<td>
<input type="image" src="<?php echo uhome().'/themes/blue/search_button.gif';?>" />
</tr>
</form>
</table>
</td>
[/code]
new one:
[code]
<? if ($client['id']){ echo '
<td>
<table cellpadding="0" cellspacing="0">
<form action="'.url('search/listing').'" method="post" name="search_form">
<tr>
<td valign="top">
<input type="text" id="search_box" name="title" value="" name="search_box" />
</td>
<td>
<input type="submit" value="find" id="search_button" style="display:none" />
</td>
<td>
<input type="image" src="'.uhome().'/themes/blue/search_button.gif'.'" />
</tr>
</form>
</table>
</td>';}
else {
echo '<td width="660px"></td>';
}
?>
[/code]
just replace old code by new code. |