RITSTARClub / star-site

The website for Space-Time Adventures at RIT (STAR)
4 stars 4 forks source link

Mailing list fix v3 #73

Closed noblelady closed 6 years ago

noblelady commented 6 years ago

So for every 100 emails there will be a new line character plus a semicolon.

dexw25 commented 6 years ago

Tested, the new code does not insert newlines every 100 members. index+1%100 never reaches zero. The expression is being evaluated as index+(1%100). That segment should be changed to (index+1)%100

noblelady commented 6 years ago

Fixed the equation @derekw023 @zmyaro