mirror of
git://develop.git.wordpress.org/
synced 2025-03-22 04:49:49 +01:00
Quick/Bulk Edit: Disable auto-correct for slugs.
Disable auto-correct for the slug field on the quick/bulk edit interface. As slugs may consist of a number of words combined in to a single string, they are unlikely to pass spell checkers. Props swb1192, SergeyBiryukov, afragen, Clorith, desrosj, JeffPaul, sabernhardt, Boniu91, costdev, hellofromTonya. Fixes #50499. git-svn-id: https://develop.svn.wordpress.org/trunk@52092 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e0ba1258dc
commit
94dc7028be
@ -1636,7 +1636,7 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||
|
||||
<label>
|
||||
<span class="title"><?php _e( 'Slug' ); ?></span>
|
||||
<span class="input-text-wrap"><input type="text" name="post_name" value="" /></span>
|
||||
<span class="input-text-wrap"><input type="text" name="post_name" value="" autocomplete="off" spellcheck="false" /></span>
|
||||
</label>
|
||||
|
||||
<?php endif; // is_post_type_viewable() ?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user