Re: BuddyPress Skeleton Component v1.2 RC-2
Great news Jeff!
One thing I noticed on line 233 in bp-example.php is that there appears to be a syntax error:
bp_core_add_nav_item( __( ‘Example’, ‘bp-example’ ), /* The display name */ $bp->example->slug // The slug );
With the “// The slug );” comment, the closing parenthesis and semicolon will also get commented out.
To fix it, it should read something like:
bp_core_add_nav_item( __( ‘Example’, ‘bp-example’ ), /* The display name */ $bp->example->slug /* The slug */ );
Once again, great job and thanks for all your hard work!