Changes in trunk/wp-admin/options-reading.php [17923:16980]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-reading.php
r17923 r16980 31 31 selects = section.find('select'), 32 32 check_disabled = function(){ 33 selects. prop( 'disabled', ! staticPage.prop('checked'));33 selects.attr('disabled', staticPage.is(':checked') ? '' : 'disabled'); 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 creen" 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>' . 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.