Changeset 393190
- Timestamp:
- 06/04/2011 08:15:15 PM (15 years ago)
- Location:
- mailchimp-widget
- Files:
-
- 3 edited
- 7 copied
-
tags/0.8.2 (copied) (copied from mailchimp-widget/trunk)
-
tags/0.8.2/languages/mailchimp-widget-es_ES.mo (copied) (copied from mailchimp-widget/trunk/languages/mailchimp-widget-es_ES.mo)
-
tags/0.8.2/languages/mailchimp-widget-es_ES.po (copied) (copied from mailchimp-widget/trunk/languages/mailchimp-widget-es_ES.po)
-
tags/0.8.2/languages/mailchimp-widget-pt_BR.mo (copied) (copied from mailchimp-widget/trunk/languages/mailchimp-widget-pt_BR.mo)
-
tags/0.8.2/languages/mailchimp-widget-pt_BR.po (copied) (copied from mailchimp-widget/trunk/languages/mailchimp-widget-pt_BR.po)
-
tags/0.8.2/mailchimp-widget.php (copied) (copied from mailchimp-widget/trunk/mailchimp-widget.php)
-
tags/0.8.2/readme.txt (copied) (copied from mailchimp-widget/trunk/readme.txt)
-
trunk/lib/ns_mc_plugin.class.php (modified) (2 diffs)
-
trunk/mailchimp-widget.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mailchimp-widget/trunk/lib/ns_mc_plugin.class.php
r365853 r393190 88 88 } 89 89 90 public function admin_page () { 90 public function admin_page () { 91 92 global $blog_id; 91 93 92 94 $api_key = (is_array($this->options)) ? $this->options['api-key'] : ''; … … 126 128 if (function_exists('curl_init')) { 127 129 128 $admin_page .= '<p>' . __('Enter a valid MailChimp API key here to get started. Once you\'ve done that, you can use the MailChimp Widget from the Widgets menu. You will need to have at least MailChimp list set up before the using the widget.', 'mailchimp-widget') . '</p><form action="' . $_SERVER['PHP_SELF']. '?page=' . $_GET['page'] . '" method="post">' . wp_nonce_field(self::$prefix . '_update_options', self::$prefix . '_nonce', true, false) . '<table class="form-table"><tr valign="top"><th scope="row"><label for="' . self::$prefix . '-api-key">MailChimp Api Key</label></th><td><input class="regular-text" id="' . self::$prefix . '-api-key" name="' . self::$prefix . '-api-key" type="password" value="' . $api_key . '" /></td></tr></table><p class="submit"><input type="submit" name="Submit" class="button-primary" value="' . __('Save Changes', 'mailchimp-widget') . '" /></p></form>';130 $admin_page .= '<p>' . __('Enter a valid MailChimp API key here to get started. Once you\'ve done that, you can use the MailChimp Widget from the Widgets menu. You will need to have at least MailChimp list set up before the using the widget.', 'mailchimp-widget') . '</p><form action="' . get_admin_url($blog_id) . '?page=' . $_GET['page'] . '" method="post">' . wp_nonce_field(self::$prefix . '_update_options', self::$prefix . '_nonce', true, false) . '<table class="form-table"><tr valign="top"><th scope="row"><label for="' . self::$prefix . '-api-key">MailChimp Api Key</label></th><td><input class="regular-text" id="' . self::$prefix . '-api-key" name="' . self::$prefix . '-api-key" type="password" value="' . $api_key . '" /></td></tr></table><p class="submit"><input type="submit" name="Submit" class="button-primary" value="' . __('Save Changes', 'mailchimp-widget') . '" /></p></form>'; 129 131 130 132 } else { -
mailchimp-widget/trunk/mailchimp-widget.php
r390917 r393190 5 5 Description: 6 6 Author: James Lafferty 7 Version: 0.8. 27 Version: 0.8.5 8 8 Author URI: https://github.com/kalchas 9 9 License: GPL2 -
mailchimp-widget/trunk/readme.txt
r390917 r393190 41 41 42 42 == Changelog == 43 = 0.8.5 = 44 * Fix for some issues Multisite users were having when trying to add API keys. Thank you to [khungate ](https://github.com/khungate) and [tapuat](https://github.com/tapuat) over at GitHub for finding this and helping me figure out a fix. 45 43 46 = 0.8.2 = 44 47 * Added Spanish translation. Thank you to [Iván Gabriel Campaña Naranjo](http://icampana.blogspot.com/) for this contribution! … … 106 109 107 110 == Upgrade Notice == 111 = 0.8.5 = 112 * Fix for some issues MultiSite users were having when trying to add API keys. Thank you to [khungate ](https://github.com/khungate) and [tapuat](https://github.com/tapuat) over at GitHub for finding this and helping me figure out a fix. 113 108 114 = 0.8.2 = 109 115 * Adds support for Spanish. Thank you to [Iván Gabriel Campaña Naranjo](http://icampana.blogspot.com/) for the translation.
Note: See TracChangeset
for help on using the changeset viewer.