Skip to content

Commit

Permalink
Update add-page.html.php
Browse files Browse the repository at this point in the history
  • Loading branch information
danpros committed Dec 6, 2023
1 parent f460cdf commit 72e53f2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions system/admin/views/add-page.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,9 @@
<label for="pTitle"><?php echo i18n('Title');?> <span class="required">*</span></label>
<input type="text" class="form-control text <?php if (isset($postTitle)) {if (empty($postTitle)) {echo 'error';}} ?>" id="pTitle" name="title" value="<?php if (isset($postTitle)) {echo $postTitle;} ?>"/>
<br>
<?php if ($type == 'is_page') :?>
<label for="pMeta"><?php echo i18n('Meta_description');?> (<?php echo i18n('optional');?>)</label>
<textarea id="pMeta" class="form-control" name="description" rows="3" cols="20" placeholder="<?php echo i18n('If_leave_empty_we_will_excerpt_it_from_the_content_below');?>"><?php if (isset($p->description)) {echo $p->description;} ?></textarea>
<br>
<?php endif;?>

</div>
<div class="col-sm-6">
<?php if ($type == 'is_page') :?>
Expand Down

0 comments on commit 72e53f2

Please sign in to comment.