Changeset 16485
- Timestamp:
- 11/19/2010 02:48:11 PM (14 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-discussion.php
r16431 r16485 142 142 <p><label for="moderation_keys"><?php _e('When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be held in the <a href="edit-comments.php?comment_status=moderated">moderation queue</a>. One word or IP per line. It will match inside words, so “press” will match “WordPress”.') ?></label></p> 143 143 <p> 144 <textarea name="moderation_keys" rows="10" cols="50" id="moderation_keys" class="large-text code"><?php e sc_textarea( get_option( 'moderation_keys' ) ); ?></textarea>144 <textarea name="moderation_keys" rows="10" cols="50" id="moderation_keys" class="large-text code"><?php echo esc_textarea( get_option( 'moderation_keys' ) ); ?></textarea> 145 145 </p> 146 146 </fieldset></td> … … 151 151 <p><label for="blacklist_keys"><?php _e('When a comment contains any of these words in its content, name, URL, e-mail, or IP, it will be marked as spam. One word or IP per line. It will match inside words, so “press” will match “WordPress”.') ?></label></p> 152 152 <p> 153 <textarea name="blacklist_keys" rows="10" cols="50" id="blacklist_keys" class="large-text code"><?php e sc_textarea( get_option( 'blacklist_keys' ) ); ?></textarea>153 <textarea name="blacklist_keys" rows="10" cols="50" id="blacklist_keys" class="large-text code"><?php echo esc_textarea( get_option( 'blacklist_keys' ) ); ?></textarea> 154 154 </p> 155 155 </fieldset></td> -
trunk/wp-admin/options-writing.php
r16431 r16485 138 138 <p><label for="ping_sites"><?php _e('When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see <a href="http://codex.wordpress.org/Update_Services">Update Services</a> on the Codex. Separate multiple service <abbr title="Universal Resource Locator">URL</abbr>s with line breaks.') ?></label></p> 139 139 140 <textarea name="ping_sites" id="ping_sites" class="large-text code" rows="3"><?php e sc_textarea( get_option('ping_sites') ); ?></textarea>140 <textarea name="ping_sites" id="ping_sites" class="large-text code" rows="3"><?php echo esc_textarea( get_option('ping_sites') ); ?></textarea> 141 141 142 142 <?php else : ?>
Note: See TracChangeset
for help on using the changeset viewer.