Update permalink structure input when selecting a structure with the radio buttons.

Props nacin
fixes #22645


git-svn-id: http://core.svn.wordpress.org/trunk@22931 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Ryan Boren 2012-11-30 00:01:26 +00:00
parent 24b82f2c3b
commit 4c22897819
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ function options_permalink_add_js() {
<script type="text/javascript"> <script type="text/javascript">
//<![CDATA[ //<![CDATA[
jQuery(document).ready(function() { jQuery(document).ready(function() {
jQuery('input:radio.tog').change(function() { jQuery('.permalink-structure input:radio').change(function() {
if ( 'custom' == this.value ) if ( 'custom' == this.value )
return; return;
jQuery('#permalink_structure').val( this.value ); jQuery('#permalink_structure').val( this.value );
@ -189,7 +189,7 @@ $structures = array(
); );
?> ?>
<h3><?php _e('Common Settings'); ?></h3> <h3><?php _e('Common Settings'); ?></h3>
<table class="form-table"> <table class="form-table permalink-structure">
<tr> <tr>
<th><label><input name="selection" type="radio" value="" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th> <th><label><input name="selection" type="radio" value="" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
<td><code><?php echo get_option('home'); ?>/?p=123</code></td> <td><code><?php echo get_option('home'); ?>/?p=123</code></td>