-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.txt
1002 lines (781 loc) · 52.5 KB
/
ChangeLog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
= 10.18.4 =
* Readygraph premium plan default change
* Bug fix
= 10.18.3 =
* Readygraph premium plan selections
* Site profile for readygraph promotions
= 10.18.2 =
* ReadyGraph Bug Fixes
* ReadyGraph Banner on plugin pages
= 10.18.1 =
* Bug Fixes
= 10.18 =
* Option to synch current subscriber list
* Bug Fixes
= 10.17.2 =
* Disconnect/Delete Readygraph Link fix
* Deactivation confirmation message
= 10.17.1 =
* link fix
= 10.17 =
* Bug Fixes
= 10.16 =
* XSS security fix
* ReadyGraph Premium Features
* UI Tweaks
= 10.15 =
* Bug Fix - disable popup
= 10.14 =
* GUI change
* Tutorial
* FAQ included
= 10.13 =
* Uninstall Readygraph Option
* Daily digest
* Real time post update to all the subscribers
= 10.12 =
* Popup customization templates selection
* Performance update for faster javascript load.
* updated signup form information
= Version 10.11 =
* 2-way synchronization with readygraph popup
* Performance update for faster javascript load.
* contact information for readygraph
= Version 10.10 =
* Send blog updates to readygraph for weekly digest. You can turn it off from readygraph settings page.
* Fix Readygraph banner close permanently
= Version 10.9 =
* Close button to dismiss Readygraph connect button on plugins page
* Add option to hide Powered by Readygraph from popup
* Readygraph TOS and Privacy Policy link is required as Readygraph stores the sign up email address on behalf of site owner, to remove these links you will need to disconnect the Readygraph from Readygraph Settings page.
= Version 10.8 =
* Re-Integrate Readygraph Features into Subscribe2
* Disconnect readygraph option inside readygraph settings page
= Version 10.7 =
* Roll back to version with basic Readygraph - v.10.3
= Version 10.6 =
* Bug Fix
= Version 10.5 =
* Bug Fix
= Version 10.4 =
* Integrate Readygraph Wordpress Plugin
* Readygraph feature is handled by Readygraph plugin
= Version 10.3 =
* Fix ReadyGraph page for i18n
* Fix ReadyGraph page for HTML validity
* Add feature to unlink ReadyGraph
= Version 10.2 =
* Fix bugs for readygraph features
= Version 10.1 by Matthew Robinson =
* Revert introduction of ReadyGraph features until they are production ready
* Resolve a critical SQL Injection vulnerability introduced in recent code
* Fix jQuery conflict caused by TinyMCE4 plugin - props Greg Ross
= Version 10.0 =
* Initial introduction of ReadyGraph features
= Version 9.5 by Matthew Robinson =
* Improved placement and usage of the 's2_custom_keywords' filter in the digest emails
* Fix for some undefined variable notices
* Fixes for database connectivity in the upgrade class file - thanks to rushu25
* Fix for bug when antispam measures are disabled - thanks to serinx
* Add option to Sidebar Widget to not wrap the button below the form
* Straightened quotes in the ChangeLog
* Remove all uses of PHP extract() function as per core ticket (https://core.trac.wordpress.org/ticket/22400)
= Version 9.4 by Matthew Robinson =
* Fix for non-existing variable errors on Subscribe2->Subscribers page - thanks to bapakrob and perezlr
* Don't display Excluded Categories in Bulk Management is Registered users cannot override the exclusion
* Fix for disappearing Jetpack Stats module - thanks to desertravenart
* Fix for undefined variable notices in the digest emails
= Version 9.3 by Matthew Robinson =
* Only add 'weekly' cron schedule interval if it does not already exist
* Add capability to add social media share buttons to HTML emails
* Update editor plugin for TinyMCE version 4 bundled with WordPress 3.9
* Rework Digest emails to collect posts based on transition status rather than time - see ticket https://plugins.trac.wordpress.org/ticket/2058
* Hide comment form subscription options if using Jetpack Comments and improve compatibility
* Fixed typos in the Help tab on the Settings page
* Improved domain name comparison for sender email check - props garypardun
* Tidied load_string() function and moved it to class-s2-frontend.php as all strings are not for user side only
* Ensure 's2_authors' keys exist on all sites and for all Registered Users as per illmasterc's bug report
* Introduce 's2_mu_blog_list' filter to allow filter of blog list for WordPress Multisite installs - props careb
* Enable built-in widget by default - props by MadtownLems
* Use a better method for unendcoding HTML special characters for plain text emails - proposed by Dainius Kaupaitis
* Fixed a bug affecting handling of Registered users with email aliases (e.g. [email protected]) - thanks to Alexandre (bosseal)
* Improved Character Set encoding of some email headers
* Improved user registration hooking for Multisite installs - thanks to dsl255
* Introduce a filter to allow filtering of the confirm link URL - props diddledan
* Introduce a confirmation box for Registered User deletion - props geoorgge1968
* Improved Bulk Management user experience by retaining submitted settings
= Version 9.2 by Matthew Robinson =
* Fixed an error in the Registered User deletion code - thanks to Jay Wasack
= Version 9.1 by Matthew Robinson =
* Shortcode parameters are now not case sensitive
* Fixed AJAX mode to work with new Anti Spam code
* Suppress undefined variable warnings when sending Digest Email previews
* Include Signup Date and IP for Public Subscribers in CSV Export - props Taylor4484
* Fix for Sticky Posts in the digest returning errant posts - thanks to belg4mit
* Move FAQs to external site to allow more timely updates
* Add ability to hide other Multisite blogs with CSS in the Subscribe2->Your Subscriptions page (DIV id of 's2_mu_sites') - props cblsysadmin
* Add 's2_form' filter to allow dynamic alterations to the default form - props adam_jack
* Conduct more thorough checking for Public and Registered emails when adding users in the admin pages - thanks to MadtownLems
* Introduce the {REFERENCELINKS} keyword - props manu1033
* Fix link to jQuery CSS for servers using HTTPS connections - props Christian (aka Alariel)
* Introduce link to Templates page with unsupported keywords are detected - props MadtownLems
* Ensure all JavaScript passes the JSHint WordPress Coding Standards
* Initialise 'colorpicker' boxes on page load so they are coloured before first user click
* Only add a new Weekly schedule if it doesn't already exist
* Use trim() on post excerpt to account for blank but non-empty excerpts
* Don't display screen icons in WordPress 3.8 as they are hidden by CSS - see ticket http://core.trac.wordpress.org/ticket/26119
* Added 's2_confirm_email' filter to allow amendment or replacement of the subscribe and unsubscribe emails - proposed by Tim Büttner
* Fixed a typo in the names of the five 's2_send_{email_type}_subscribers' hooks - thanks to robertjj
* Introduced the 's2_post_statuses' to allow for custom post status transitions, for example with the 'Edit Flow' plugin
* Fix for failed deletion of Registered Subscribers in Subscribe2->Subscribers page - thanks to Russ Michaels
= Version 9.0 by Matthew Robinson =
* Added capability to send emails with attachments from Send Email page
* Added feature that removes unconfirmed public subscribers after 28 days (time frame can be altered with a filter)
* Added ability to bulk delete Registered Users/Subscribers
* Use {IMAGE} tag in HTML excerpt emails and digests only, images would be stripped in plain text and included anyway in full content HTML - applies to Subscribe2 HTML only
* Added help tabs on the plugins admin pages
* Improved the comparison of barred domains to subscribing email addresses - thanks to SashainSydney
* Added Text Domain to the plugin header to allow information on plugin page to translate - thanks to qwertysimo
* Applied a fix to ensure translation of all strings - thanks to qwertysimo
* Improved some strings to use sprintf() - thanks to Tom Adams (tomdxw)
* Use jQuery.noConflict(); when AJAX is enabled
* Removed excess span tag from the Counter Widget - thanks to dimagsv
* Allow filtering of admin email address for the emails sent when users confirm a subscription or unsubscription - suggested by 3cstudio
* Fixed default email notification subject text - thanks to Steve C @ 3Cstudio
* Fixed ability to have translation files in WP_LANG folder
* Fixed an issue with pagination of search results - thanks to sijpie
* Fixed 'Add Registered User' button in Subscribe2->Subscribers, Registered Tab - thanks to qwik3r
* Improved pages dropdown to an ordered and hierarchical display - thanks to xavierlh1
* Improved control over digest email scheduling - proposed by Jason Lemahieu
* Fixed Subscriber Dropdown counts for Compulsory categories
* Added a link to Tranlation files to the plugin page and the miscellaneous tab of the Subscribe2->Settings page - props eyephone21
* Added {KEYWORD} checking in the template to warn users of disallowed keywords - proposed by Jason Lemahieu
* Fixed some notices in the Send Email page - thanks to Bryan Hadaway (bhadaway)
* Added anti-spam measures to the sign up form - thanks to Bryan Hadaway (bhadaway)
* Update query_filter() function to hook into the 'request' filter instead of the deprecated 'query_filter'
* Added a default 'Select a page' option to the page dropdown to highlight the need to have a published page select
* Added filters to the subscription and unsubscription confirmation messages to allow personalisation - see FAQs for example functions
* Remove Simple Facebook Connect action during subscription and unsubscription confirmation to ensure user messages are displayed
* Improved white space stripping in the plaintext full content email
* Fixed a PHP notice on the Subscribe2->Subscribers page - thanks to emile.swain
* Fixes the non-working 'check all' boxes in WordPress 3.6 and above
* NOTE Version 9.0 needs WordPress 3.3 or above
= Version 8.9.1 by Matthew Robinson =
* Check for the existence of the mb_encode_mimeheader function before use as it's optional in PHP builds - thanks to derekmacewen
* Fix for fatal error in upgrade code due to calling the wrong class
= Version 8.9 by Matthew Robinson =
* Fix fatal error in the uninstall.php file
* Correct error using set_url_scheme() function in WordPress version prior to 3.5
* Allow the Widget to post form back to referring page by omitting action for parameter - thanks to Peter Gordon
* Fix for options being reset on Multisite installs - thanks to Luca
* Make sure translation strings are loaded during install(), upgrade() and reset() - thanks to Milan Dinić
* Fix internationalisation of subscribers list table - thanks to Milan Dinić
* Use mb_encode_mimeheader on email sender name - thanks to xl32
* Trim email addresses before sanitising them - thanks to byarts
* Optimised the upgrade() function for large sites
= Version 8.8 by Matthew Robinson =
* Added ability to filter both excerpt_length and word_wrap
* Added code to stop site wide activation on Multisite installs
* Added code to fix compatibility issues with Autoblog plugin - thanks to Kevin Waite and Andy Stratton
* Fixed digit entry in pagination section on Registeres tab in Subscribe2->Subscribers
* Removed ID from a string in the Settings page as it was confusing
* Enhanced Compulsory Category code to ensure that Registered Users all get notifications for such categories despite their current personal settings
* Improved Pagination when the Filter is changed on the Subscribe2->Subscribers page
* Use $wpdb->prefix in preference to $table_prefix
* Improve functionality of the uninstall script on Multisite installs
* Fixed glitch in upgrade85 code that failed to add a new database column when called
* Sort subscribers into alphabetical order irrespective of case - thanks to mharpen
= Version 8.7 by Matthew Robinson =
* Enabled {TITLE} as a keyword in URL Tracking in free version
* Moved Subscribers page class code to a new external class file to avoid fatal PHP errors on some sites
* Fixed a glitch in the {TABLELINK} tag caused by adding support for {TINYLINK} to the digest email
* Fixed and repaired addition of extra comma to s2_subscribed table values and also addition of null s2cat values
* Fixed incomplete table creation on new installs - thanks to niclaslockner
* Fix for PHP Warning about an undefined $value variable on form submission - thanks to annewinterbottom
* Rename public subscriber variables internally for consistency
* Implement variable caching for Registered users in the same way as for Public subscribers
* Widen Subject boxes on the Subscribe2->Settings:Templates page - props Orion42
* Allow easier customisation of the word wrap length in plain text emails - props Orion42
* Abstracted the upgrade() code and made it incremental so that only necessary code is executed
* Fixed a bug in the Send Email page that failed to send emails to Public Subscribers when All Users was selected - thanks to Gui
* Added an option to disable JavaScript within the Widget
* Minor code improvements
= Version 8.6 by Matthew Robinson =
* Minor layout update to Widget Settings
* Fix for non-sending notifications for pages - proposed by ctcdesign
* Fix for a translation domain error in admin/settings.php - proposed by monpelaud
* Fix for deprecated is_blog_user() function on Multisite installs - proposed by hallcp
* Extend Subscribe2 database table to collect additional data to meet DreamHost privacy policy - thanks to matt, joshukraine and Dreamhost
* Refresh Subscribers page in admin, tables now sortable on present columns
* Order CSS files better by applying CSSComb
* Reuse $value variable in the 'frontend' class to reduce translation strings
* Improve AJAX form to obey the shortcode hide parameter - proposed by bwsl
* Correct spelling error in the Settings page - proposed by dimadin
* Call translation code via a hook to allow greater dynamic control - proposed by dimadin
* Look in more locations for translation files, can place in core languages folder now for upgrade protection
* Refresh Settings page in admin to a tabbed interface
* Strip HTML from email subject to improve compatibility with other plugins and WordPress 3.5
* Fixed bug in the display of compulsory categories in the Settings page
* Add option to manually send emails to All Registered Users and Public Subscribers - proposed by TigWeb
* Enable TinyURL link shortening for Digest Notification Emails if {TINYLINK} is present in the Email Template
* Fixed bug in TinyURL error handling and fallback when link generation fails
* Fixed bug where {DATE} was left blank in the subject field for future scheduled post notifications - thanks to Steve Savoy
* Added a filter to allow on-the-fly alteration of the size of the {IMAGE} in the paid version
* Fixed a warning message for a core function ready for WordPress 3.6
* Enabled {TITLE} as a keyword in URL Tracking in HTML version
= Version 8.5 by Matthew Robinson =
* Fixed width of a page select drop down in the Widget settings - thanks to Balky79
* Added option to check the comment subscription box by default - proposed by Doug Lerner
* Improved off-domain error message in Settings page and address checking if Blogname is selected
* Fixed an issue on Multisite installs displaying the wrong link to profiles pages for other blog sites - thanks to MadtownLems
* Fixed an issue with Image and Shortcode replacement in the visual editor (TinyMCE) - thanks to Dave Firman
* Fixed unique IDs for 2 possible error messages in the Settings page - thanks to MadtownLems
* Fixed several HTML5 validation error in the admin pages
* Improved regex replacedment of s strike and del HTML tags in plaintext emails - thanks to jimshell
* Use wp_kses() rather than strip_tags() on email subject lines so that single angle brackets are allowed - thanks to eightize and esmi
* Allow remote definition of email address in form - thanks to orion42
* Added ability to have compulsory categories - proposed by iClimb
* Apply WordPress the_author filter to the author names to improve plugin compatibility - proposed by SpaciousMind
* Added the ability to track the post ID in the tracking Parameter field - proposed by Laga
* Protect the 's2email' post meta key - proposed by Nally123
* Strip excess white space within the Digest email when images are removed
* Add a time column to the public subscriber table for hosting provider spam policy compliance - proposed by Erik N
* Change plugin folder name to suppress update prompts for the HTML version
* Rename js files consistently with core ticket 21633
* Add width parameter to comment form text to fix issues with some themes - proposed by mharpen
* Added option to include Sticky Posts at the top of all Digest Notifications - proposed by pkhatmedia
* Fixed some Markdown errors in the ReadMe
= Version 8.4 by Matthew Robinson =
* Fixed an error in the 'Send Mail' page that blocked emails from being sent
* Added tracking features to Digest title links in HTML version - thanks to Jeremy Schultz
* Provide clearer user feedback for Send and Preview buttons in "Send Email" window
* Add new option to the Widget to return users to the home page on submission
* Added warning to Settings page if selected sender email address is "off-domain"
* Fixed numerous minor SQL injections vectors - thanks to Tom Adams (holizz)
* Removed auto-embed iframes from HTML emails - thanks to Doug Lerner
* Add more intuitive user messages for Public Subscribers when Unsubscribing - thanks to Doug Lerner
= Version 8.3 by Matthew Robinson =
* Fixed a bunch of PHP messages - should not show anyway unless WP_DEBUG is true or PHP error reporting is on a high setting
* Fixed bulk category management so it applies to all users and not just the first record
* Update 'autosub' to no on one-click unsubscribe instead of erasing the value
* Return empty string is get_tracking_link() is passed and empty variable
* Fixed some typographical errors
* Fixed profile page to obey 'one click' display setting
* Fixed implode error seen when sending preview emails on some configurations
* Fixed a error in the admin user dropdown on installs (particularly Multisite) where there may be no administrator level users
* Added a button text filter for the Subscribe and Unsubscribe buttons - proposed by casben79
* Use wp_hash in place of MD5 to further obfuscate confirmation links - thanks to Charlie Eriksen, Otto and Ipstenu
= Version 8.2 by Matthew Robinson =
* Implemented use of Farbtastic as colour chooser in the Counter Widget because ColorPicker has been deprecated in WordPress
* Fixed one hook call in WordPress to pass $this variable by reference to save a little more RAM
* Fixed Subscribe2 implementation of custom taxonomies
* Fixed Bulk Management Format Change code to apply for all users
* Fix for low impact security vulnerability
= Version 8.1 by Matthew Robinson =
* Fixed redirect errors and crash affecting multisite installs on upgrade to 8.0 - thanks in particular to Ed Cooper
* Fixed several other multisite bugs affecting links and styling - thanks to Mark Olbert
* Fixed empty CSV exports - thanks to Gil Namur
= Version 8.0 by Matthew Robinson =
* Split the main plugin file into separate classes for more efficient (60% less RAM) server resource usage - huge thanks to Milan Petrovic
* Ensure notifications for posts are sent to all active registered users
* Fixed bug in Bulk Management code to include all filtered Registered Subscribers, not just those on current screen - thanks to samandiriel
* Fixed some PHP messages regarding use of deprecated clean_url() function and WordPress version checking - thanks to anmari
* Improved white space trimming in the code so it respects tabs and line breaks - thanks to belg4mit
* Updated screenshots to Subscribe2 8.0 and WordPress 3.3.1 screen layouts
* Implemented one-click buttons to subscribe and unsubscribe - thanks to dimadin for code patch
* Changed some default settings, sender to BLOGNAME and number of recipients per email to 1
* Implemented a change so that categories are not displayed in the filter dropdowns when using Subscribe2 in digest mode
* Ensure an action is specified for HTML5 validity - thanks to Franco Carinato
* Introduced 4 new hooks to filter per-post subscribers for each of the 4 email types - thanks to Nicolas Noé
= Version 7.2 by Matthew Robinson =
* Fix for non-sending Preview emails when sender details match recipient details exactly
* Remove some HTML tags (DEL, S and STRIKE) from plain text content to avoid confusing reading - props cpo
* Improved removal of excess white space within the content of the plain text emails
* Introduced 'size' parameter to the shortcode to allow sizing of the email text input box
* Fix for non-sending emails to newly Registered Subscribers - thanks to Gengar003 and WebEndev
* Fix for commenter subscriptions on systems without moderation in place - thanks to elarson
* Improved the TinyMCE plugin code that handles placement of the Subscribe2 shortcode in the rich text editor
* Tidied up some public subscribe functions removing unnecessary code
= Version 7.1 by Matthew Robinson =
* Fix for Opt-out by Author for Registered Users that resulted in posts being sent even though a user had opted out
* Workaround implemented for core WordPress glitch that reults in blank sender details in digest emails when using "Post Author" as sender
* Introduced DIV HTML tags to the administrion menu screens to allow jQuery custom hiding by plugins - proposed by madtownlems
* Reduced code overhead when collecting admin level users
* Fix for non-sending emails when published via XML RPC interface (like the iOS app and Windows Live Writer) - thanks to bellarush & Marc Williams
* Removed the X-Mailer header ready for core PHPMailer update
* Removed single use of split() function which is deprecated in PHP 5.3.0
* Added additional parameters to the 's2_html_email' hook - props Milan Dinić
* Added a check on wp-cron.php to warn digest email users - props Dave Bergschneider
= Version 7.0.1 by Matthew Robinson =
* Fixed a typo in the include/options file that caused failed installs and upgrades
* Fix for get_registered() function for fringe situations
= Version 7.0 by Matthew Robinson =
* NOTE Subscribe2 now requires WordPress 3.1 or higher
* Implemented top level menu to make Subscribe2 menu access easier
* Introduced the ability to add UTM Tracking parameters to email links - Thanks to Sander de Boer
* Introduced Opt-out by Author for Registered Users (on sites where there is more than one author)
* Improved table layout code on user management page
* Make use of core checked() function to save code space
* Show user name for Registered Users when mouse is hovered over email address in Subscribe2->Subscribers
* Move IP address display on hover from date of signup to email address for Public Subscribers so consistent with above change
* Introduced the 's2_capability' filter to allow API amendments to page access for different user capabilities
* Added support to exclude 'post formats' from generating emails provided 'post formats' are supported by the current active theme
* Implemented use of core WordPress functions to place the authoring button shortcuts, removed reliance on buttonsnap.php so this library is now dropped
* Implement use of wp_register_scripts() function
* Display custom post types added using the API in the Settings page as confirmation things are working
* Added two missed strings to the translation domain and corrected a typo - thanks to Stig Ulfsby
* Added a filter for the outgoing email subject line
* Added an option to AJAXify the form, read the FAQs for how to use this new feature
= Version 6.5 by Matthew Robinson =
* Fix for Multisite / MU detection for WordPress versions prior to 3.0
* Fix in the upgrade() function to insert database entires for Registered Users on first time install
* Fix for the uninstaller script to allow use on regular and Multisite WordPress
* Updated uninstaller to remove any postmeta entries on uninstall
* Fix for blank post detail on HTML Excerpt notifications when the post content is brief
* Fix for some PHP notices
* Fix to remove all cron settings when options are reverted to per-post
* Minor code layout changes and comment updates
* Dropped use of WP_CONTENT_DIR to fix issues on site where wp-content/ folder has been moved
= Version 6.4 by Matthew Robinson =
* Wrapped all KEYWORDS in curly brackets {} so capitalised keywords can be used in content without being replaced
* Added support for Custom Taxonomies - thanks to Ian Dunn
* Added feature to allow commenters on your blog to subscribe when commenting (requires WordPress 2.9+)
* Improved and updated some of the jQuery ready for WordPress 3.2
* Introduced 's2_registered_subscribers' filter to allow other plugins to dynamically add or remove email addresses to the 'registered' array - thanks to Allan Tan
* Improved handling of [gallery] shortcode where no post id is defined for HTML emails - thanks to Chris Grady
* Removed trailing semi colons from the maybe_add_column function calls
* Fixed a type on the Settings page - thanks to Deborah Hanchey
* Updated editor buttons to insert shortcode instead of token
* Fixed some PHP notices about undeclared variables
* Compressed some of the javascript code includes to reduce download time
* Fixes to the Counter Widget ColorPicker jQuery code
* Fixes to the Counter Widget label tags
* Fixed a bug in the new_category function that was introduced in version 6.3 - thanks to crashtest
* Improved the user experience when clicking Subscribe and Unsubscribe links in the WordPress MultiSite interface - thanks to Huyz
* Improved the Bulk Manage section to take into account the digest notification setting
* Updated the uninstall script
* Updated some of the code comments to aid reviewing
* Other minor improvements and fixes
= Version 6.3 by Matthew Robinson =
* Stopped using deprecated get_usermeta(), update_usermeta() and delete_usermeta() functions in WordPress 3.1
* Use WP_User_Query class and functions in WordPress 3.1
* Stop using buggy is_blog_user() multisite function
* Fixed a bug where the creating of a new category would re-subscribed digest email users incorrectly
= Version 6.2 by Matthew Robinson =
* Pass email address to add() function explicitly
* Fix typos in the ReadMe
* Added warning on the Options page to avoid using the Subscribe2 KEYWORDS in posts as they will get substituted
* Added HTML LABEL tags to the Subscribe2 form to support WCAG
* SSL friendly with WordPress admin areas
* Added filter to allow on-the-fly manipulation of the digest email
* Added option choice to have emails send from the global admin email and addressed from the name of the blog
* Change sending details for Preview emails so they can be more easily identified by type
* Fixed a typo in a screen message to WordPressMU users
= Version 6.1 by Matthew Robinson =
* Fixed a glitch in the HTML tags in the Subscribe2 Widget that affected drag and drop functions in WordPress - thanks to Marty McOmber
* Improved detection of Multisite installs - thanks to Nada Oneal
* Fixed precontent and postcontent in the Widget to retain entered HTML tags - reported by Rob Saxe
* Fixed a few small typos in the inline code comments and email subjects
* Fixed a bug where Bulk Management changes to move all users to Plain Text Full content would result in blank settings - reported by Sean @ GetSatisfaction
* Fixed issued with TIME and AUTHORNAME keywords in digest emails - thanks to Robert @ GetSatisfaction
* Introduced a more flexible Subscribe2 shortcode - thanks to Milan for the patch code
= Version 6.0 by Matthew Robinson =
* Improved case sensitive SQL queries to avoid issues on some server configurations
* Introduced option to check the notification override button by default at Settings->Subscribe2 - Appearance
* Extend support for for multiuser sites to include WordPress 3.0
* Converted both Widgets to the WordPress 2.8 API - check your widgets are installation
* Improved the Colour Picker in the Counter Widget
* Integrated the Counter Widget into the Settings page
* Removed several functions from the code for WordPress versions prior to 2.8 (2.8 is now a minimum requirement for Subscribe2)
* Removed legacy tinymce files that are no longer required
* Added code to prevent duplicate Public Subscriber entries
* Introduced TABLELINKS keyword for digest type notifications
= Version 5.9 by Matthew Robinson =
* Added support for WordPress 3.0 Custom Post Types
* Fix for failed save of "entries per page" setting
* Correct Digest display issue associated with use of AUTHORNAME keyword
* Fixed issue where posts were not included in Digest notifications despite settings
* Fixed possible issue where a page is not included in Digest notifications if a certain category is excluded
* Fixed issue where successful emailing from Post->Mail Subscribers would report as failed if Subscribe2 is set to email one user per email - Thanks to Meini from Utech Computer Solutions (www.utechworld.com)
* Added a preview button in the Email Subscribers screen that will send current content of the window to the logged in user
* Avoid duplicating the MIME-Version header in the emails
* Removed direct links to Support forum
* Ensure that Subscribe2 sanitises email addresses to RFC5322 and RFC5321 - Thanks to Vital
* Improved the 'Save Emails to CSV' function to include additional information - Thanks to John Griffiths (www.luadesign.co.uk)
* Report that there is no digest notification to resend rather than success if there are no posts in the email
= Version 5.8 by Matthew Robinson =
* Reverted erroneous use of a WordPress 3.0 function
= Version 5.7 by Matthew Robinson =
* Corrected some missed strings to allow i18n translation
* Added AUTHORNAME to digest notification in the same was a TAGS and CATS (i.e. a fixed location in email independent of location in template)
* Ensure digest email sending times are not updated when resend is invoked
* Error check options for number of users displayed per page and if not an integer use default setting of 25
* Better name for cron 'define' and improved 'define' and 'defined' statements
* Revert to using WordPress capability when adding menus rather than user_level, latter is deprecated
* Added DATE and TIME keywords for per-post notifications
= Version 5.6 by Matthew Robinson =
* Fixed a critical bug in the digest function - a typo resulting failed notifications
* Added ability to resend the last digest email again
* Improved Bulk Management to apply to filtered users only (provided they are still Registered and not Public Subscribers)
* Fix for HTML Excerpt mails not using email template
= Version 5.5 by Matthew Robinson =
* Made the email header function pluggable to allow custom changes that persist through versions
* Fix for failed upgrades
* Ensure HTML entities in blogname are decoded for emails
* Add safety checking for options at install to protect against randomly resetting options
= Version 5.4 by Matthew Robinson =
* Fixed a bug introduced in 5.3 that produced in malformed email headers resulting in failed emails
* Fixed an upgrade error that could result in an incomplete table update which blocked new subscriptions
= Version 5.3 by Matthew Robinson =
* Added an HTML Excerpt notification type which sends an HTML formatted excerpt of the post
* Issue an error message in Settings->Subscribe2 if there is no WordPress page published on the blog site
* Improved usage of time dropdown in Settings->Subscribe2 so it works for periodic emails that are on a less than daily frequency
* Sorted categories by slugname for better presentation in the category selection area
* Make sure Preview emails skip the mail queue if WPMQ is used
* Fixed issue where blog posts made by email generated duplicate notifications
* Added fixes with the hope of stopping the random settings reset glitch many thanks to Barbara Wiebel
* Fixed AJAX bugs caused by deprecated jQuery function
* Fixed an issue where Registered Users who have requests a password reset disappear from Subscribe2
* Amended code for IP address collection to work around IIS servers
* Added COUNT keyword
* Ensure that BLOGNAME is not used in digest emails if it is empty
= Version 5.2 by Matthew Robinson =
* Added screen_icon() to each Subscribe2 admin page
* Improved addition of links to the Plugins admin page
* Improved XHTML validity of admin pages
* Improved display of category hierarchy display in the category form
* Added ability to use TAGS & CATS keywords in digest mails (position is static irrespective of keyword location)
* Use PHP variable for Subscribe2 folder to allow for easier renaming (if needed)
* Fixed a bug in TinyURL encoding introduced when links were click enabled
* Removed BurnURL from the plugin as it appears to be no longer operational
* Added urlencode to email addresses in Tools->Subscribers when editing other user preferences
* Restored several FAQs to the ReadMe file and the [WordPress.org FAQ section](http://wordpress.org/extend/plugins/subscribe2/faq/)
= Version 5.1 by Matthew Robinson =
* Add widget options to add custom text before and a after the dynamic Subscribe2 output - thank to Lee Willis
* Add protection against SQL injection attacks to the data entered into the Subscribe2 table
* Applied a fix for WP_User_Search on PHP4 installations
* Collect IP address of subscribers either at initial submission or at confirmation as required by some hosts to allow relaxation of email restrictions. IP details are in the database or available when the mouse pointer is held over the sign up date in Tools->Subscribers
* Fix for script execution time limit code for sites that have safe mode on or that have disable ini_set()
* Display category slugs when mouse pointer is held over the name in the category form area
* Fixed display of HTML entities in the subject of emails by using html_entity_decode()
* Fixed substitution of the MYNAME keyword in notification emails
* Added option to use BurnURL as an alternative to TinyURL to create shorter link URLs
= Version 5.0 by Matthew Robinson =
* Change version number to reflect change in the on going support of the plugin which is now a searchable forum or a paid service
* Added links to online Subscribe2 resources into the Options->Subscribe2 page
* Fixed Digest Time Dropdown to recall Cron Task scheduled time
* Fixed code using updated [Admin Menu Plugin](http://wordpress.org/extend/plugins/ozh-admin-drop-down-menu/) API
* Fixed foreach() error in widget rename function
* Improved layout of widget control boxes
* Improved identification of Administrator level users on blogs where usermeta table entries for user_level are low or missing
* Removed avatar plugin support on WPMU due to processing overhead
* Improved the layout of the digest email with respect to inclusion of unnecessary white space
* Extended maximum script runtime for servers not using PHP in safe mode
= Version 4.18 by Matthew Robinson =
* Option to sort digest posts in ascending or descending order
* Check that plugin options array exists before calling upgrade functions
* Improved reliability of the Preview function
* Extended Preview function to digest emails
* Fixed a code glitch that stopped CATS and TAGS from working
* Fixed incorrect sender information is emails are set to come from Post Author
* Simplified email notification format options in Users->Subscriptions for per-post notifications
* Added Bulk Manage option to update email notification format
* Simplified the usermeta database entries from two format variables down to one
* Removed trailing spaces from some strings for improved i18n support
* Improved Bulk Subscribe and Unsubscribe routines to avoid database artefacts
* Moved Select/Deselect All check box to the top of the category list in admin pages
* Fixed small layout glitch in Manage->Subscribers screen
* Added ChangeLog section to ReadMe to support WordPress.org/extend development
= Version 4.17 by Matthew Robinson =
* Tested for compatibility with WordPress 2.8.x
* Added TAGS and CATS keyword for per-post notification templates
* Fixed bug where confirmation emails may have an empty sender field if notifications come from post author
* Fixed a bug in WPMU CSS
* Added option to exclude new categories by default
* Fixed a bug where emails may not be sent to subscribers when a user subscribes or unsubscribes
* Improved accessing of 'Admin' level users on blogs where user_level is set below 10
* Added ability to send email previews to currently logged in user from Settings->Subscribe2
* Styled admin menu form buttons to fit with WordPress theme
* Improved handling of confirmation sending to reduce errors
= Version 4.16 by Matthew Robinson =
* Correct minor layout issue in Settings->Subscribe2
* Allow users to define the div class name for the widget for styling purposes
* Select from a greater number of notification senders via dropdown list in Settings
* Improved efficiency of newly added WordPressMU code
* Added ability to manage across-blog subscriptions when using WordPressMU
* Fixed bug whereby Public Subscribers may not have got notification emails for posts if Private Posts were blocked
* Added ability to define email Subject contents in Settings->Subscribe2
* Sanity checks of email subject and body templates to ensure they are not empty
* Introduced s2_html_email and s2_plain_email filters to allow manipulation of email messages after construction
* Amended handling of database entries to simplify code and database needs
* Improved the layout of the Subscriber drop down menu
* Added bullet points to the TABLE of posts
* Ensure database remains clean when categories are deleted
* Added new option to manage how auto-subscribe handles excluded categories
= Version 4.15 by Matthew Robinson =
* Fixed E_DEPRECATE warning caused by a variable being passed by reference to the ksort() function
* Fixed called to undefined function caused by typo
* Fixed a syntax error in the SQL code constructors affecting some users
= Version 4.14 by Matthew Robinson =
* Reordered some functions to improve grouping
* Stop s2mail custom variable being added if empty
* Localised 'Send Digest Notification at' string
* Add support for template tags in Post->Mail Subscribers emails
* Improve handling of translation files for more recent version of WordPress
* Implemented <label> tags in the admin pages so text descriptors are click enabled
* Improved subscription preferences for WordPress MU (Huge thanks to Benedikt Forchhammer)
* Added TINYLINK tag to allow TinyURL insertion in place of PERMALINK
* Improved layout of Tools->Subscriber page (Thanks to Anne-Marie Redpath)
* Enhancements to Subscription form layout (Thanks to Anne-Marie Redpath and Andy Steinmark)
* Sender details now uses current user information from Write->Mail Subscribers
* Introduced 's2_template_filter' to allow other plugins to amend the email template on-the-fly
= Version 4.13 by Matthew Robinson =
* Update weekly description
* Improve layout in the Subscribe2 form
* Fixed bug where registering users would not be subscribed to categories if using the checkbox on the registration page
* Improved buttonsnap function checking to reduce PHP notices
* Fixed typo when including CSS information in HTML emails
* Fix 'edit' links in the Tools->Subscribers page for blogs where the WordPress files are not in root
* Improved Tools->Subscribers page layout by hiding some buttons when they are not needed
* Fixed glitch in default options settings file
* Added option to include or exclude a link back to the blog theme CSS information within the HTML emails
* Improve per-post exceptions to sending emails by introducing a separate meta-box rather than relying on a custom field
* Fix for Gallery code in emails sending entire media library
* Updated screen shots
= Version 4.12 by Matthew Robinson =
* Added new option to remove Auto Subscribe option from Users->Your Subscriptions
* New POSTTIME token for digest email notifications
* Preserve mail after sending from Write->Mail Subscribers
* Introduced the Subscriber Counter Widget
* Use Rich Text Editor in Write->Mail Subscribers for the Paid HTML version
* Per User management in Admin
* Added support Uninstall API in WordPress 2.7
* Add support for 'Meta Widget' links
* Subscribers are sorted alphabetically before sending notifications
* Added ability to bulk unsubscribe a list of emails pasted into manage window
* Define number of subscribers in Manage window
* Added options for admin emails when public users subscribe or unsubscribe
* Fixed bug that prevented sending of Reminder emails from Manage->Subscribers
* Amended confirmation code so that only one email is sent no matter how many times users click on (un)subscribe links
= Version 4.11 by Matthew Robinson =
* Works in WordPress 2.7-almost-beta!
* Fixed a bug in the mail() function that meant emails were not sent to recipients if the BCCLimit setting was greater than the total number of recipients for that mail type
* Ensured that the array of recipients was cast correctly in the reminder function
* Fixed display of html entities in the reminder emails
* Fixed a bug in the SQL statements for WordPress MU installations
* Corrected a typo in the message displayed on the WordPress registration page if subscriptions are automatic
* Several layout and inline comment changes
= Version 4.10 by Matthew Robinson =
* Fixed Registration form action from WordPress registrations
* Repositioned the button to send reminder emails
* Implemented WP_CONTENT_URL and WP_CONTENT_DIR
* Added filter for <a href="http://planetozh.com/blog/2008/08/admin-drop-down-menu-more-goodness-an-api/">Admin Drop Down Menu</a>
* Improve functioning of Process button in Manage admin pane
* Improved form compliance with XHTML
* Fixed bug with cron time being changed every time options are changed
= Version 4.9 by Matthew Robinson =
* Send email direct to recipient if BCC is set as 1
* Fix issue where WordPress shortcodes were not stripped out of emails
* Amended Manage page to resolve issues with IE and Opera not passing form information correctly
* Amended Manage page to allow for bulk management of public users
* Amended WordPress API usage for translation files to 2.6 compatible syntax
* Allow Editor and Author users to send emails from Write->Mail Subscribers
* Post collection for CRON function is more dynamic
* CRON function sanity to checks for post content before sending a notification
* Fixed get_register() function to allow for user_activation field
* Corrected typos in options.php
* Added a search box to the Manage->Subscribers window
* Strip tags and HTML entities from email subjects
* Improved message feedback in Write->Mail
* Added html_entity_decode to sender name fields
* Change Menu string for User menu to make it clearer whose preferences are being edited
= Version 4.8 by Matthew Robinson =
* Removed unnecessary return statement at end of publish() function
* Ensured posts in digest are listed in date order
* Improved compatibility with other plugins by only inserting JavaScript code into Subscribe2's own admin pages
* Added BCCLIMIT and S2PAGE to options page with AJAX editing
* Improved setting of CRON task base time
* Improved handling of option values in the options form
* Full XHTML compliance on all Subscribe2 admin pages
* Decode HTML entity codes in notification email subjects
* Added Subscribe2 support for blogging via email
* Work-around fix implemented for WordPress the_title bug
= Version 4.7 by Matthew Robinson =
* Added admin control over default auto subscribe to new category option
* Improved Cron code to reduce the chance of duplicate emails
* Fixed a string that was missed from the translation files
* Improved time variable handling for cron functions, especially when UTC is different from both server time and blog time
* Completed code changes to allow WPMU compatibility
* Fixed some issues with the email headers now that Subscribe2 is using wp_mail() again
= Version 4.6 by Matthew Robinson =
* Fixed mis-reporting of server error when unsubscribing
* Fixed fatal errors involving buttonsnap library
* Improved database entry management for new subscribers
* Fixed issue where Subscribe2 grabbed the first page from the database even if it wasn't published
* Fixed upgrade reporting for Debug and Uninstaller plugins
= Version 4.5 by Matthew Robinson =
* Added Support for WordPress 2.5!
* Fixed HTML typo in admin submission message
* Fixed time display for cron jobs in Options->Subscribe2 when displayed on blogs using a time offset
* Added Debug plugin to the download package
* Improved descriptions of email template keywords in Options->Subscribe2
* Display subscribers in batches of 50 in Manage->Subscribers
* Fixed some XHTML validation errors
* Improved admin menu layout for compliance with WordPress 2.5
* Reverted to using wp_mail instead of mail to ensure proper header encoding
* Improved mail header formatting - thanks to Chris Carlson
* Add ability to skip email notification using a Custom Field (s2mail set as "no")
* Improved CSV export - thanks to Aaron Axelsen
* Added some compatibility for WPMU - thanks to Aaron Axelsen
* Added some error feedback to blog users if mails fail to send
* Moved Buttonsnap due to far to many fatal error complaints
* Added option to send notifications for Private posts
* Improved handling of notification for Password Protected Posts
= Version 4.4 by Matthew Robinson =
* Fixed non-substitution of TABLE keyword
* Fixed bug in usermeta update calls in unsubscribe_registered_users function
* Fixed bug in array handling in cron function that may have stopped emails sending
* Improved array handling in the Digest function
* Added an Un-installer to completely removed Subscribe2 from your WordPress install
= Version 4.3 by Matthew Robinson =
* Fixed bug where digest emails were sent to unsubscribed users - Thanks to Mr Papa
* Stripped slashes from Subject when sending from Write->Mail Subscribers - Thanks to James
* Ensured all admin pages created by Subscribe2 are valid XHTML 1.0 Transitional code
* Added default mail templates and other missed string values to i18n files to allow easier first time translation - thanks to Kjell
* Added option to set the hour for digest email notifications provided the schedule interval is one day or greater
* Moved option variable declaration to ensure better caching
* Fixed bug where cron tasks were not removed when options were reset
* Fixed email notifications for future dated posts
* Fixed QuickTag Icons and mouse-over floating text
= Version 4.2 by Matthew Robinson =
* Added translation capability to user feedback strings - thanks to Lise
* Corrected some other translation strings
* Fixed bug in notification emails to admins when new users subscribe
* Updated default options code
= Version 4.1 by Matthew Robinson =
* Fixed sending of notifications for Pages
* Fixed password protected post bug for Digest email notifications
* Fixed blank email headers if admin data is not at ID 1
= Version 4.0 by Matthew Robinson =
* Compatible with WordPress 2.3
* Widget Code now integrated into the main plugin and added as an option
* More Options for Email Notifications
* Category Lists fixed for WordPress 2.3 and now show empty categories
= Version 3.8 by Matthew Robinson =
* Fixed User Menu Settings when Digests enabled
* Changed Registered Subscribers to Registered Users in drop down to avoid confusion
* Minor code revisions for admin menu layout
= Version 3.7 by Matthew Robinson =
* Change from deprecated get_settings -> get_option
* Fix for confirmation links not working for custom installs
* Abandoned wp_mail due to core bugs
* Added Digest Table feature (untested)
* Added icons to manage window (Thanks to http://www.famfamfam.com/lab/icons/)
* Fixed Bulk Manage bug when using i18n files
* Fixed bug in cron emails if <!--more--> tag present
= Version 3.6 by Matthew Robinson =
* Fixed a typo in Content-Type mail headers
* Fixed Auto Register functions to obey Excluded Categories
* Added option to check WP-Register checkbox by default
= Version 3.5 by Matthew Robinson =
* Fixed a bug in the upgrade function that was messing up the options settings
* Updated the include.php file to preset recently introduced option settings
= Version 3.4 by Matthew Robinson =
* QuickTag button now displays a Marker! (HUGE thanks to Raven!)
* Fix for excluded categories in User Menu
* BCCLIMIT typo corrected in Mail function
* Call to translation files moved to avoid call to undefined function
* Options added to send mails for pages and password protected posts
* Option added to display subscription checkbox in WordPress Register screen
* Small typo and layout amendments
= Version 3.3 by Matthew Robinson =
* QuickTag button added! Works with Visual and Standard Editor. __Look in Code for token addition if using RTE.__
* Current Server time displayed for Cron tasks
* Fixed bug so Registered users now identified correctly
* Upgrade function called via WordPress hook to prevent calls to undefined functions
* Fixed a bug affecting Registered Users not appearing in the drop down list
* Improved handling of the Subscribe2 option array
= Version 3.2 by Matthew Robinson =
* Fixed a bug affecting Registered Users not appearing in the drop down list
* Improved handling of the Subscribe2 option array
= Version 3.1 by Matthew Robinson =
* Amended code to use core cron functionality for future posts and digest notifications, no longer need WP-Cron
* Improved HTML code generated for admin pages
* Removed sending of emails for WordPress Pages
* Fixed display issues if S2PAGE is not defined
= Version 3.0 by Matthew Robinson =
* Updated for WordPress 2.1 Branch
= Version 2.22 by Matthew Robinson =
* Fixed User Menu Settings when Digests enabled
* Changed Registered Subscribers to Registered Users in drop down to avoid confusion
* Minor code revisions for admin menu layout
= Version 2.21 by Matthew Robinson =
* Change from deprecated get_settings -> get_option
* Fixed bug in cron emails if <!--more--> tag present
= Version 2.20 by Matthew Robinson =
* Fixed a typo in Content-Type mail headers
* Fixed Auto Register functions to obey Excluded Categories
= Version 2.19 by Matthew Robinson =
* Fixed a bug in the upgrade function that was messing up the options settings
= Version 2.18 by Matthew Robinson =
* BCCLIMIT typo corrected in Mail function
* Call to translation files moved to avoid call to undefined function
* Small typo and layout amendments
= Version 2.17 by Matthew Robinson =
* Current Server time displayed for Cron tasks
* Fixed bug so Registered users now identified correctly
* Upgrade function called via WordPress hook to prevent calls to undefined functions
= Version 2.16 by Matthew Robinson =
* Fixed a bug affecting Registered Users not appearing in the drop down list
* Improved handling of the Subscribe2 option array
= Version 2.15 by Matthew Robinson =
* Improved HTML code generated for admin pages
* Fixed display issues if S2PAGE is not defined
= Version 2.14 by Matthew Robinson =
* Amended DREAMHOST setting to BCCLIMIT as more hosts are limiting emails
* Fixed oversight in upgrade() function
= Version 2.13 by Matthew Robinson =
* Added WordPress nonce functionality to improve admin security
= Version 2.12 by Matthew Robinson =
* Fix for missing Quicktags (probably since version 2.2.10)
* Fix for occasional email issue where excerpts are incomplete
= Version 2.11 by Matthew Robinson =
* Fixed bug that would cause all subscribers to get digest emails
* Added Select All check box to category listing
= Version 2.10 by Matthew Robinson =
* Improved sign up process by double checking email address
* Fix for submenu issues encountered in WP 2.0.6
= Version 2.9 by Matthew Robinson =
* Fixed get_userdata call issue
* Added CSV export
* Reworked options storage routines
= Version 2.8 by Matthew Robinson =
* Fixed missing line return in email headers that was causing failed emails
* Added user feedback messages to profile area
* Added 'Authorname' to the list of message substitutions in email messages
* Fixed name and email substitution in Digest Mails
* Fixed stripslashes issue in email subjects
* Added new 'Action' token for confirmation emails
= Version 2.7 by Matthew Robinson =
* Link to post in HTML emails is now functional
* Fixed bug in Bulk Management so it works when first loaded
* Ability to auto subscribe newly registering users
* Added additional email header information
= Version 2.6 by Matthew Robinson =
* Fixed email headers to comply with RFC2822 standard (after breaking them in the first place)
* Impoved XHTML compliance of user feedback messages and subscription form when presented on a blog
* Tidied up presentation of the code a little
* Cached some additional variables
= Version 2.5 by Matthew Robinson =
* Added functionality to Bulk Manage registered users subscriptions
= Version 2.4 by Matthew Robinson =
* Added functionality to block user specified domains from public subscription
= Version 2.3 by Matthew Robinson =
* Added functionality to allow for Subscribe2 Sidebar Widget
* Added functionality to block public email subscriptins from domains defined under Options
* Added functionality to send an email reminder to all unconfirmed public subscriber
* Added removal of html entities (for example ©) from plaintext emails
* Replaced spaces with tabs in Plugin format
* Minor changes to admin layout to match WordPress admin function layout
= Version 2.2 =