Automattic / super-cool-ad-inserter-plugin

Insert ads, newsletter signup widgets, and calls to action in the middle of your posts!
https://wordpress.org/plugins/super-cool-ad-inserter/#description
32 stars 4 forks source link

Prevent shortcode inserter from wrapping to the start of a post #20

Closed benlk closed 8 years ago

benlk commented 8 years ago

Changes

$paragraph_positions[$i] wasn't set when $i was equal to count($paragraph_positions) and ($i + 1 ) % $scaip_period == 0.

This is because $paragraph_positions is zero-indexed and count( starts counting from 1, so it was an off-by-one error.