Skip to content

Commit

Permalink
post fix
Browse files Browse the repository at this point in the history
  • Loading branch information
voitto committed May 6, 2009
1 parent bd33ad9 commit 87b076b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wp-content/themes/p2/post-form.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
<div class="postrow">

<?php if (environment('use_tags')) : ?>
<input type="text" name="tags" id="tags" tagindex="1" autocomplete="off" value="<?php _e('Tag it'); ?>" onfocus="this.value=(this.value=='<?php _e( 'Tag it' ); ?>') ? '' : this.value;" onblur="this.value=(this.value=='') ? '<?php _e( 'Tag it' ); ?>' : this.value;"/><?php endif; ?>
<input type="text" name="tags" id="tags" tagindex="1" autocomplete="off" value="<?php _e('Tag it'); ?>" onfocus="this.value=(this.value=='<?php _e( 'Tag it' ); ?>') ? '' : this.value;" onblur="this.value=(this.value=='') ? '<?php _e( 'Tag it' ); ?>' : this.value;"/><?php else : ?>

<input type="hidden" name="tags" id="tags" />
<?php endif; ?>
<input id="submit" type="submit" value="<?php _e('Post it'); ?>" />
</div>
<span class="progress" id="ajaxActivity"><img src="<?php bloginfo('template_directory'); ?>/i/indicator.gif" alt="Loading..." /></span>
Expand Down

0 comments on commit 87b076b

Please sign in to comment.