Changeset 43667 for trunk/src/wp-admin/plugins.php
- Timestamp:
- 10/02/2018 07:29:18 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/plugins.php
r43571 r43667 480 480 $errmsg = __( 'You cannot delete a plugin while it is active on the main site.' ); 481 481 } elseif ( isset( $_GET['charsout'] ) ) { 482 $errmsg = sprintf( __( 'The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.' ), $_GET['charsout'] ); 482 $errmsg = sprintf( 483 _n( 484 'The plugin generated %d character of <strong>unexpected output</strong> during activation.', 485 'The plugin generated %d characters of <strong>unexpected output</strong> during activation.', 486 $_GET['charsout'] 487 ), 488 $_GET['charsout'] 489 ); 490 $errmsg .= ' ' . __( 'If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.' ); 483 491 } else { 484 492 $errmsg = __( 'Plugin could not be activated because it triggered a <strong>fatal error</strong>.' );
Note: See TracChangeset
for help on using the changeset viewer.