Skip to content

Commit

Permalink
Fixes a syntax error in the post type labels array.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyza committed Dec 14, 2014
1 parent faa73fc commit ec267bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/class-starter-plugin-post-type.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function register_post_type () {
'not_found' => sprintf( __( 'No %s Found', 'starter-plugin' ), $this->plural ),
'not_found_in_trash' => sprintf( __( 'No %s Found In Trash', 'starter-plugin' ), $this->plural ),
'parent_item_colon' => '',
'menu_name' => $this->plural;
'menu_name' => $this->plural,
);

$single_slug = apply_filters( 'starter_plugin_single_slug', _x( sanitize_title_with_dashes( $this->singular ), 'single post url slug', 'starter-plugin' ) );
Expand Down

0 comments on commit ec267bc

Please sign in to comment.