Skip to content

Commit

Permalink
Fix space issue
Browse files Browse the repository at this point in the history
  • Loading branch information
frozzare committed Oct 26, 2016
1 parent a9f4fff commit b6514c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/admin/class-papi-admin.php
Expand Up @@ -86,7 +86,7 @@ public function admin_body_class( $classes ) {
$arr = is_string( $arr ) ? [$arr] : $arr;
$arr = is_array( $arr ) ? $arr : [];

$classes .= ' ' . implode( ' ', $arr );
$classes .= ' ' . implode( ' ', $arr );
}

return $classes;
Expand Down

0 comments on commit b6514c3

Please sign in to comment.