Skip to content

Commit

Permalink
Optimise template and input fields
Browse files Browse the repository at this point in the history
  • Loading branch information
slackero committed Apr 21, 2017
1 parent 795de9f commit b580000
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions include/inc_tmpl/news.tmpl.php
Expand Up @@ -360,9 +360,13 @@ function aSort(date, month, year) {


<p class="space_top">
<label><a id="cnt_name_click"><?php echo $BL['be_title'] ?></a>/<a id="cnt_alias_click"><?php echo $BL['be_alias'] ?></a></label>
<input type="text" name="cnt_name" id="cnt_name" value="<?php echo html($news->data['cnt_name']) ?>" class="text short" maxlength="200" placeholder="<?php echo $BL['be_title'] ?>" />
<input type="text" name="cnt_alias" id="cnt_alias" value="<?php echo html($news->data['cnt_alias']) ?>" class="text short" maxlength="230" placeholder="<?php echo $BL['be_alias'] ?>" />
<label><a id="cnt_name_click" style="cursor:pointer;text-decoration:underline;"><?php echo $BL['be_title'] ?></a></label>
<input type="text" name="cnt_name" id="cnt_name" value="<?php echo html($news->data['cnt_name']) ?>" class="text" maxlength="200" placeholder="<?php echo $BL['be_title'] ?>" />
</p>

<p>
<label><a id="cnt_alias_click" style="cursor:pointer;text-decoration:underline;"><?php echo $BL['be_alias'] ?></a></label>
<input type="text" name="cnt_alias" id="cnt_alias" value="<?php echo html($news->data['cnt_alias']) ?>" class="text" maxlength="230" placeholder="<?php echo $BL['be_alias'] ?>" />
</p>

<div class="cf">
Expand Down

0 comments on commit b580000

Please sign in to comment.