Changeset 904017
- Timestamp:
- 04/28/2014 11:09:48 AM (12 years ago)
- Location:
- wpnewsman-newsletters/trunk
- Files:
-
- 3 edited
-
core.php (modified) (4 diffs)
-
readme.txt (modified) (3 diffs)
-
wpnewsman.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpnewsman-newsletters/trunk/core.php
r886740 r904017 212 212 213 213 public function mailman() { 214 $this->cleanOldUnconfirmed(); 214 if ( $this->options->get('cleanUnconfirmed') ) { 215 $this->cleanOldUnconfirmed(); 216 } 217 215 218 if ( !defined('NEWSMAN_DISABLE_WORKERS_CHECK') || !NEWSMAN_DISABLE_WORKERS_CHECK ) { 216 219 $this->mailman->pokeWorkers(); … … 457 460 if ( !empty($wp) ) { 458 461 switch ($wp) { 459 case 'blogname': return get_option('blogname');462 case 'blogname': return html_entity_decode(get_option('blogname'), ENT_QUOTES); 460 463 case 'url': return $this->utils->addTrSlash( get_bloginfo('url') ); 461 464 case 'wpurl': return $this->utils->addTrSlash( get_bloginfo('wpurl') ); … … 869 872 870 873 if ( $tpl ) { 874 871 875 $email['subject'] = do_shortcode( $tpl->subject ); 872 876 $email['html'] = do_shortcode( $tpl->p_html ); … … 941 945 global $wp_version; 942 946 943 $isNew38Style = preg_match('/^3\.(\d+)/i', $wp_version, $matches) && intval($matches[1]) >= 8;947 $isNew38Style = (intval(preg_replace('/[^\d]+/i', '', $wp_version)) >= 38); 944 948 945 949 $page = isset($_REQUEST['page']) ? $_REQUEST['page'] : ''; -
wpnewsman-newsletters/trunk/readme.txt
r886740 r904017 5 5 Requires at least: 3.5 6 6 Tested up to: 3.9 7 Stable tag: 1.6. 87 Stable tag: 1.6.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 15 15 = WPNewsman is built to be extremely easy to use and to be very user friendly! = 16 16 17 An email newsletter is one of the most convenient and easy ways to keep in touch with your clients and prospects. With WPNewsman you can easily convert your website visitors into newsletter subscribers through double optin subscription forms in widgets, articles and pages, import and manage your lists, create and send beautiful newsletters directly from your WordPress site.18 19 Check it out! Download Right Now and Take Control of Your Email Campaigns.17 An email newsletter is one of the most convenient and easy ways to keep in touch with your clients and prospects. With WPNewsman you can easily convert your website visitors into newsletter subscribers through confirmed optin subscription forms in widgets, articles and pages, import and manage your lists, create and send beautiful newsletters directly from your WordPress site. It helps you build huge lists, take control of your email and make your business more profitable. You get a powerful yet easy to use and customize self-hosted newsletter platform for WordPress -- no-brainer alternative to restrictive email service providers with expensive monthly plans. 18 19 Check it out! Download Right Now and Send EMails for FREE... 20 20 21 21 = WPNewsman Pro = 22 22 23 *WPNewsman Pro* is a **significant upgrade** to *WPNewsman Lite* that allows you to embed forms on external sites, send newsletters to an unlimited number of subscribers, track the recipient's actions with Google Analytics or Piwik, and keep your mailing lists verified and clean. You get **complete freedom and lower cost** compared to Email Service Providers' rigid requirements. You can learn more about *WPNewsman Pro* here:23 *WPNewsman Pro* is a **significant upgrade** to *WPNewsman Lite* that allows you to embed forms on external sites, send newsletters to an unlimited number of subscribers, track the recipient's actions with Google Analytics or Piwik, and keep your mailing lists verified and clean. Unlike other autoresponder systems, you can just import your contacts and leads and get started. No messing around with re-confirmation of leads or facing an inquisition about how you built your list… You have FULL control of your email campaigns and are not relying on third party services that ultimately control your profit at their whim. You can learn more about *WPNewsman Pro* here: 24 24 25 25 [Home](http://wpnewsman.com/ "Home") | [Review](http://wpnewsman.com/review-newsletter-plugin-wordpress/ "Review") | [Upgrade to WPNewsman Pro](http://wpnewsman.com/premium-newsletter-plugin-wordpress/ "Upgrade to WPNewsman Pro") … … 124 124 == Changelog == 125 125 126 = 1.6.9 = 127 128 * Fixed escaping of apostrophe/single quote mark in a blog title when using the [newsman wp="blogname"] shortcode. 129 * Fixed removing of unconfirmed subscriber in 7 days despite the settings. 130 126 131 = 1.6.8 = 127 * Fixed fancy_excerpt for non-english characters.132 * Fixed fancy_excerpt mode for non-english characters. 128 133 * Added restore option for bundled email templates: Digest and Basic. 129 134 -
wpnewsman-newsletters/trunk/wpnewsman.php
r886740 r904017 4 4 Plugin URI: http://wpnewsman.com 5 5 Description: You get simple yet powerful newsletter solution for WordPress. Now you can easily add double optin subscription forms in widgets, articles and pages, import and manage your lists, create and send beautiful newsletters directly from your WordPress site. You get complete freedom and a lower cost compared to Email Service Providers. Free yourself from paying for expensive email campaigns. WPNewsman plugin updated regularly with new features. 6 Version: 1.6. 86 Version: 1.6.9 7 7 Author: Alex Ladyga - G-Lock Software 8 8 Author URI: http://www.glocksoft.com … … 32 32 33 33 define('NEWSMAN', 'wpnewsman'); 34 define('NEWSMAN_VERSION', '1.6. 8');34 define('NEWSMAN_VERSION', '1.6.9'); 35 35 36 36 if ( preg_match('/.*?\.dev$/i', $_SERVER['HTTP_HOST']) ) {
Note: See TracChangeset
for help on using the changeset viewer.