mirror of
https://github.com/myvesta/vesta
synced 2025-08-20 21:34:12 -07:00
WEB. templates fixed #915
This commit is contained in:
parent
36a1a3d49b
commit
02ac870ab7
38 changed files with 381 additions and 382 deletions
|
@ -373,7 +373,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" size="20" class="vst-input long" name="v_cmd" <?php if (isset($v_cmd)) echo "value='".htmlentities($v_cmd)."'"; ?>>
|
||||
<input type="text" size="20" class="vst-input long" name="v_cmd" value="<?=htmlentities(trim($v_cmd, "'"))?>">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
@ -384,7 +384,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" size="20" class="vst-input short" name="v_min" <?php if (isset($v_min)) echo "value=".htmlentities($v_min); ?>>
|
||||
<input type="text" size="20" class="vst-input short" name="v_min" value="<?=htmlentities(trim($v_min, "'"))?>">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -394,7 +394,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" size="20" class="vst-input short" name="v_hour" <?php if (isset($v_hour)) echo "value=".htmlentities($v_hour); ?>>
|
||||
<input type="text" size="20" class="vst-input short" name="v_hour" value="<?=htmlentities(trim($v_hour, "'"))?>">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -404,7 +404,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" size="20" class="vst-input short" name="v_day" <?php if (isset($v_day)) echo "value=".htmlentities($v_day); ?>>
|
||||
<input type="text" size="20" class="vst-input short" name="v_day" value="<?=htmlentities(trim($v_day, "'"))?>">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -414,7 +414,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" size="20" class="vst-input short" name="v_month" <?php if (isset($v_month)) echo "value=".htmlentities($v_month); ?>>
|
||||
<input type="text" size="20" class="vst-input short" name="v_month" value="<?=htmlentities(trim($v_month, "'"))?>">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -424,17 +424,17 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="text" size="20" class="vst-input short" name="v_wday" <?php if (isset($v_wday)) echo "value=".htmlentities($v_wday); ?>>
|
||||
<input type="text" size="20" class="vst-input short" name="v_wday" value="<?=htmlentities(trim($v_wday, "'"))?>">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table class="data-col2">
|
||||
<tr>
|
||||
<td class="step-top" width="116px">
|
||||
<input type="submit" class="button" name="save" value="<?php print __('Save');?>">
|
||||
<input type="submit" class="button" name="save" value="<?=__('Save')?>">
|
||||
</td>
|
||||
<td class="step-top">
|
||||
<input type="button" class="button cancel" value="<?php print __('Back');?>" onclick="<?php echo $back ?>">
|
||||
<input type="button" class="button cancel" value="<?=__('Back')?>" onclick="<?=$back?>">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue