Skip to content

Commit

Permalink
Remove stray semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Tadlock committed Sep 5, 2012
1 parent decfc5c commit 48bc924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/random-custom-background.php
Expand Up @@ -300,7 +300,7 @@ public function custom_background_callback() {
}

/* Output the custom background style. */
echo "\n" . '<style type="text/css" id="custom-background-css">body.custom-background{ ' . trim( $style ) . '; }</style>' . "\n";
echo "\n" . '<style type="text/css" id="custom-background-css">body.custom-background{ ' . trim( $style ) . ' }</style>' . "\n";
}
}

Expand Down

0 comments on commit 48bc924

Please sign in to comment.