WEB. additions to fix #915

This commit is contained in:
Dmitry Naumov-Socolov 2016-11-24 17:00:34 -05:00
commit f742c99641
3 changed files with 15 additions and 15 deletions

View file

@ -54,7 +54,7 @@
</tr>
<tr>
<td>
<input type="text" size="20" class="vst-input" name="v_domain" value="<?php print htmlentities($v_domain) ?>">
<input type="text" size="20" class="vst-input" name="v_domain" value="<?=htmlentities(trim($v_domain, "'")) ?>">
</td>
</tr>
<tr>
@ -64,7 +64,7 @@
</tr>
<tr>
<td>
<input type="text" size="20" class="vst-input" name="v_email" value="<?php print htmlentities($v_email) ?>">
<input type="text" size="20" class="vst-input" name="v_email" value="<?=htmlentities(trim($v_email, "'")) ?>">
</td>
</tr>
<tr>
@ -75,7 +75,7 @@
</tr>
<tr>
<td>
<input type="text" size="20" class="vst-input" name="v_country" value="<?php print htmlentities($v_country)?>">
<input type="text" size="20" class="vst-input" name="v_country" value="<?=htmlentities(trim($v_country, "'"))?>">
</td>
</tr>
<tr>
@ -85,7 +85,7 @@
</tr>
<tr>
<td>
<input type="text" size="20" class="vst-input" name="v_state" value="<?php print htmlentities($v_state) ?>">
<input type="text" size="20" class="vst-input" name="v_state" value="<?=htmlentities(trim($v_state, "'")) ?>">
</td>
</tr>
<tr>
@ -95,7 +95,7 @@
</tr>
<tr>
<td>
<input type="text" size="20" class="vst-input" name="v_locality" value="<?php print htmlentities($v_locality) ?>">
<input type="text" size="20" class="vst-input" name="v_locality" value="<?=htmlentities(trim($v_locality, "'")) ?>">
</td>
</tr>
<tr>
@ -105,7 +105,7 @@
</tr>
<tr>
<td>
<input type="text" size="20" class="vst-input" name="v_org" value="<?php print htmlentities($v_org) ?>">
<input type="text" size="20" class="vst-input" name="v_org" value="<?=htmlentities(trim($v_org, "'")) ?>">
</td>
</tr>
</table>