Skip to content

Commit

Permalink
Minor PHP Warning
Browse files Browse the repository at this point in the history
  • Loading branch information
joelworsham committed Feb 11, 2015
1 parent 18d3f6f commit 5a915f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/render.php
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ public static function add_editor_styles() {
*/
$styles = apply_filters( 'render_editor_styles', $styles );

foreach ( $styles as $style ) {
foreach ( (array) $styles as $style ) {
add_editor_style( $style );
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/render.php
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ public static function add_editor_styles() {
*/
$styles = apply_filters( 'render_editor_styles', $styles );

foreach ( $styles as $style ) {
foreach ( (array) $styles as $style ) {
add_editor_style( $style );
}
}
Expand Down

0 comments on commit 5a915f5

Please sign in to comment.