Skip to content
Snippets Groups Projects
Commit eefe38ec authored by Erick Hitter's avatar Erick Hitter
Browse files

PHPCS fixes

parent a2c13272
Branches
No related tags found
No related merge requests found
...@@ -202,6 +202,7 @@ class Main { ...@@ -202,6 +202,7 @@ class Main {
} }
/** /**
* Retrieve timestamp for next scheduled event with given vars
* *
* @param object $vars Bulk-request variables. * @param object $vars Bulk-request variables.
* @return int * @return int
......
...@@ -150,7 +150,7 @@ class Move_To_Trash { ...@@ -150,7 +150,7 @@ class Move_To_Trash {
$post__not_in = self::get_post_ids_pending_move( $q->get( 'post_type' ), $q->get( 'post_status' ) ); $post__not_in = self::get_post_ids_pending_move( $q->get( 'post_type' ), $q->get( 'post_status' ) );
if ( ! empty( $post__not_in ) ) { if ( ! empty( $post__not_in ) ) {
$post__not_in = implode(',', $post__not_in ); $post__not_in = implode( ',', $post__not_in );
$where .= ' AND ID NOT IN(' . $post__not_in . ')'; $where .= ' AND ID NOT IN(' . $post__not_in . ')';
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment