Skip to content

Commit

Permalink
Merge pull request #546 from x-team/issue-545
Browse files Browse the repository at this point in the history
Add space around the body class
  • Loading branch information
frankiejarrett committed May 22, 2014
2 parents ecfcacd + 17a022c commit a809659
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions includes/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,13 @@ public static function admin_enqueue_scripts( $hook ) {
*
* @filter admin_body_class
*
* @param array $classes
* @param string $classes
*
* @return array $classes
* @return string $classes
*/
public static function admin_body_class( $classes ) {
if ( isset( $_GET['page'] ) && false !== strpos( $_GET['page'], self::RECORDS_PAGE_SLUG ) ) {
$classes .= self::ADMIN_BODY_CLASS;
$classes .= sprintf( ' %s ', self::ADMIN_BODY_CLASS );
}

return $classes;
Expand Down

0 comments on commit a809659

Please # to comment.