Skip to content

Commit

Permalink
Correct webcomic_transcript_author to webcomic_transcript_email.
Browse files Browse the repository at this point in the history
Also correct a minor spelling error of "auther" to "author"
  • Loading branch information
Michael Sisk committed Oct 7, 2011
1 parent 4fc55ee commit 6c29d84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webcomic.php
Expand Up @@ -1385,7 +1385,7 @@ public function webcomic_transcribe_form( $args = false ) {
'webcomic_transcribe_default_fields', 'webcomic_transcribe_default_fields',
array( array(
'author' => ' 'author' => '
<p class="webcomic-transcribe-auther"> <p class="webcomic-transcribe-author">
<label for="webcomic_transcript_author">' . __( 'Name', 'webcomic' ) . '</label> ' . <label for="webcomic_transcript_author">' . __( 'Name', 'webcomic' ) . '</label> ' .
( $req ? '<span class="required">*</span>' : '' ) . ( $req ? '<span class="required">*</span>' : '' ) .
'<input type="text" name="webcomic_transcript_author" value="' . esc_attr( $transcriber[ 'comment_author' ] ) . '" id="webcomic_transcript_author"> '<input type="text" name="webcomic_transcript_author" value="' . esc_attr( $transcriber[ 'comment_author' ] ) . '" id="webcomic_transcript_author">
Expand All @@ -1394,7 +1394,7 @@ public function webcomic_transcribe_form( $args = false ) {
<p class="webcomic-transcribe-email">' . <p class="webcomic-transcribe-email">' .
'<label for="webcomic_transcript_email">' . __( 'Email', 'webcomic' ) . '</label> ' . '<label for="webcomic_transcript_email">' . __( 'Email', 'webcomic' ) . '</label> ' .
( $req ? '<span class="required">*</span>' : '' ) . ( $req ? '<span class="required">*</span>' : '' ) .
'<input type="text" name="webcomic_transcript_author" value="' . esc_attr( $transcriber['comment_author_email'] ) . '" id="webcomic_transcript_email"> '<input type="text" name="webcomic_transcript_email" value="' . esc_attr( $transcriber['comment_author_email'] ) . '" id="webcomic_transcript_email">
</p>' </p>'
), $args, $req ), $args, $req
), ),
Expand Down

0 comments on commit 6c29d84

Please sign in to comment.