diff options
Diffstat (limited to 'plugins/jetpack/modules/theme-tools/content-options/post-details.php')
-rw-r--r-- | plugins/jetpack/modules/theme-tools/content-options/post-details.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/jetpack/modules/theme-tools/content-options/post-details.php b/plugins/jetpack/modules/theme-tools/content-options/post-details.php index a448381d..7851a5be 100644 --- a/plugins/jetpack/modules/theme-tools/content-options/post-details.php +++ b/plugins/jetpack/modules/theme-tools/content-options/post-details.php @@ -11,7 +11,7 @@ function jetpack_post_details_enqueue_scripts() { } list( $date_option, $categories_option, $tags_option, $author_option, $comment_option ) = $options; - list( $date, $categories, $tags, $author, $comment ) = $definied; + list( $date, $categories, $tags, $author, $comment ) = $definied; $elements = array(); @@ -63,7 +63,7 @@ function jetpack_post_details_body_classes( $classes ) { } list( $date_option, $categories_option, $tags_option, $author_option, $comment_option ) = $options; - list( $date, $categories, $tags, $author, $comment ) = $definied; + list( $date, $categories, $tags, $author, $comment ) = $definied; // If date option is unticked, add a class of 'date-hidden' to the body. if ( 1 != $date_option && ! empty( $date ) ) { |