Changes in trunk/wp-admin/options-reading.php [16980:17923]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-reading.php
r16980 r17923 31 31 selects = section.find('select'), 32 32 check_disabled = function(){ 33 selects. attr('disabled', staticPage.is(':checked') ? '' : 'disabled');33 selects.prop( 'disabled', ! staticPage.prop('checked') ); 34 34 }; 35 35 check_disabled(); … … 48 48 '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>' . 49 49 '<p><strong>' . __('For more information:') . '</strong></p>' . 50 '<p>' . __('<a href="http://codex.wordpress.org/Settings_Reading_S ubPanel" target="_blank">Documentation on Reading Settings</a>') . '</p>' .50 '<p>' . __('<a href="http://codex.wordpress.org/Settings_Reading_Screen" target="_blank">Documentation on Reading Settings</a>') . '</p>' . 51 51 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 52 52 );
Note: See TracChangeset
for help on using the changeset viewer.