Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-reading.php

    r17923 r16980  
    3131            selects = section.find('select'),
    3232            check_disabled = function(){
    33                 selects.prop( 'disabled', ! staticPage.prop('checked') );
     33                selects.attr('disabled', staticPage.is(':checked') ? '' : 'disabled');
    3434            };
    3535        check_disabled();
     
    4848    '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>' .
    4949    '<p><strong>' . __('For more information:') . '</strong></p>' .
    50     '<p>' . __('<a href="http://codex.wordpress.org/Settings_Reading_Screen" target="_blank">Documentation on Reading Settings</a>') . '</p>' .
     50    '<p>' . __('<a href="http://codex.wordpress.org/Settings_Reading_SubPanel" target="_blank">Documentation on Reading Settings</a>') . '</p>' .
    5151    '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
    5252);
Note: See TracChangeset for help on using the changeset viewer.