Skip to content

Commit

Permalink
fix #6
Browse files Browse the repository at this point in the history
  • Loading branch information
moon committed Aug 26, 2018
1 parent c679190 commit 2a2e3b9
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions comments.php
Expand Up @@ -74,14 +74,10 @@
</p>
<?php else: ?>
<p>
<input type="text" name="author" placeholder="name" id="author" class="text" autocomplete value="<?php $this->remember('author'); ?>"
<input type="text" name="author" placeholder="name*" id="author" class="text" autocomplete value="<?php $this->remember('author'); ?>"
required />
<?php if ($this->options->commentsRequireMail): ?>
<input type="email" name="mail" placeholder="e-mail*" id="mail" class="text" autocomplete value="<?php $this->remember('mail'); ?>" required />
<?php endif; ?>
<?php if ($this->options->commentsRequireURL): ?>
<input type="url" name="url" id="url" class="text" autocomplete placeholder="<?php _e('http://*'); ?>" value="<?php $this->remember('url'); ?>" required />
<?php endif; ?>
<input type="email" name="mail" placeholder="e-mail<?php $this->options->commentsRequireMail ? _e('*') : '' ?>" id="mail" class="text" autocomplete value="<?php $this->remember('mail'); ?>" required />
<input type="url" name="url" id="url" class="text" autocomplete placeholder="http://<?php $this->options->commentsRequireURL ? _e('*') : '' ?>" value="<?php $this->remember('url'); ?>" required />
</p>
<?php endif; ?>
<p>
Expand Down

0 comments on commit 2a2e3b9

Please sign in to comment.