In `wp_dashboard_recent_posts()`, `$i` is set and never used.
See #27882. git-svn-id: https://develop.svn.wordpress.org/trunk@28545 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
70342f4a75
commit
e53cdbb8f0
|
@ -707,7 +707,6 @@ function wp_dashboard_recent_posts( $args ) {
|
||||||
|
|
||||||
echo '<ul>';
|
echo '<ul>';
|
||||||
|
|
||||||
$i = 0;
|
|
||||||
$today = date( 'Y-m-d', current_time( 'timestamp' ) );
|
$today = date( 'Y-m-d', current_time( 'timestamp' ) );
|
||||||
$tomorrow = date( 'Y-m-d', strtotime( '+1 day', current_time( 'timestamp' ) ) );
|
$tomorrow = date( 'Y-m-d', strtotime( '+1 day', current_time( 'timestamp' ) ) );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue