WEB. templates fixed #915

This commit is contained in:
Dmitry Naumov-Socolov 2016-11-22 07:05:19 -05:00
commit 02ac870ab7
38 changed files with 381 additions and 382 deletions

View file

@ -57,17 +57,17 @@
</tr>
<tr>
<td>
<textarea class="vst-textinput console" name="v_options"><?php echo $v_options;?></textarea>
<textarea class="vst-textinput console" name="v_options"><?=$v_options?></textarea>
</td>
</tr>
<tr>
<td class="vst-text step-top">
<?php print $v_config_path ?>
<?=$v_config_path?>
</td>
</tr>
<tr>
<td>
<textarea class="vst-textinput console" name="v_config"><?php echo $v_config;?></textarea>
<textarea class="vst-textinput console" name="v_config"><?=$v_config?></textarea>
</td>
</tr>
<td class="vst-text input-label" style="text-transform: capitalize;">
@ -78,10 +78,10 @@
<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>