pronamic / wp-pronamic-feeds

Pronamic Feeds allow you to add RSS feeds to your site, that will enable the copying of content from the remote link to your own posts.
http://www.pronamic.eu/plugins/pronamic-feeds/
0 stars 0 forks source link

WordPress Coding Standards #3

Closed remcotolsma closed 11 years ago

remcotolsma commented 11 years ago

https://github.com/pronamic/wp-pronamic-feeds/blob/master/views/admin/display_feeds_messages.php#L89

if( !empty($feeds)

should be

if ( ! empty( $feeds )

Indent after 'foreach':

https://github.com/pronamic/wp-pronamic-feeds/blob/master/views/admin/display_feeds_messages.php#L90

Spacing and tabs indent:

https://github.com/pronamic/wp-pronamic-feeds/blob/master/views/admin/display_feeds_messages.php#L98

zogot commented 11 years ago

Fixed the occurances I could find. On going process.