|
Revision 686, 397 bytes
(checked in by nate, 2 years ago)
|
- Removed unneeded setting from the MailChimp? module.
- Added additional instructions to the MailChimp? adminsettings.php.
- Update MailChimp? version information.
- Fixed error reporting in scheduler_list_sync.php.
- Fixed sql statement in cron.php and a variable reference in scheduler.php that would break without the installation of the api module.
- Removed the redundant push_record_ajax.php.
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | $modules["mailchimp"]["name"] = "MailChimp Client Email Sync"; |
|---|
| 4 | |
|---|
| 5 | $modules["mailchimp"]["version"] = "0.98"; |
|---|
| 6 | |
|---|
| 7 | $modules["mailchimp"]["description"] = |
|---|
| 8 | "This module adds the ability to sync the client list to a MailChimp list."; |
|---|
| 9 | |
|---|
| 10 | $modules["mailchimp"]["requirements"] = |
|---|
| 11 | "phpBMS Core v0.98 or greater; BMS module v0.98 or greater; A MailChimp account (http://www.mailchimp.com/)."; |
|---|
| 12 | |
|---|
| 13 | ?> |
|---|