Changeset 956725
- Timestamp:
- 07/29/2014 03:37:22 PM (12 years ago)
- Location:
- sendit/trunk
- Files:
-
- 5 edited
-
libs/admin/admin-core.php (modified) (2 diffs)
-
libs/constants.php (modified) (1 diff)
-
libs/install-core.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
sendit.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sendit/trunk/libs/admin/admin-core.php
r953435 r956725 767 767 add_submenu_page(__FILE__, __('Main settings', 'sendit'), __('Main settings', 'sendit'), 8, 'sendit_general_settings', 'senditpanel_admin'); 768 768 769 if (is_plugin_active('sendit-splitter/sendit-splitter.php')) { 770 add_submenu_page(__FILE__, __('Manage Segments', 'sendit'), __('Lists Segmentation', 'sendit'), 8, 'segments', 'Sublists'); 771 } 772 773 774 769 775 /*2.0 export addon*/ 770 776 if (function_exists('sendit_morefields')) … … 787 793 add_submenu_page(__FILE__, __('email import', 'sendit'), __('Import emails from WP Users', 'sendit'), 8, 'import', 'ImportWpUsers'); 788 794 795 796 if (is_plugin_active('sendit-woocommerce-import/sendit-woocommerce-import.php')) { 797 add_submenu_page(__FILE__, __('Woocommerce import', 'sendit'), __('Import email from Woocommerce', 'sendit'), 8, 'import-woocommerce-customers', 'ImportWoocommerceCustomers'); 798 } 789 799 790 800 if ($wpdb->get_var("show tables like 'bb_press'") != '') : -
sendit/trunk/libs/constants.php
r953435 r956725 4 4 define('SENDIT_EMAIL_TABLE', $wpdb->prefix . "nl_email"); 5 5 define('SENDIT_LIST_TABLE', $wpdb->prefix . "nl_liste"); 6 define('SENDIT_VERSION', '2.3. 3');7 define('SENDIT_DB_VERSION', '2.3. 3');6 define('SENDIT_VERSION', '2.3.4'); 7 define('SENDIT_DB_VERSION', '2.3.4'); 8 8 ?> -
sendit/trunk/libs/install-core.php
r489440 r956725 53 53 `header` mediumtext NULL, 54 54 `footer` mediumtext NULL, 55 `list_parent` int(11) default '0', 55 56 PRIMARY KEY (`id_lista`) 56 57 );"; 58 59 //splitter 60 $sql_parent="ALTER TABLE ". SENDIT_LIST_TABLE ." add column list_parent int(11) default '0'"; 57 61 58 62 $sql_alter="ALTER TABLE ". SENDIT_EMAIL_TABLE ." add column subscriber_info text default NULL"; … … 62 66 dbDelta($sql_email); 63 67 dbDelta($sql_liste); 68 dbDelta($sql_parent); 64 69 dbDelta($sql_alter); 65 70 -
sendit/trunk/readme.txt
r953435 r956725 4 4 Tags: newsletter, mailing list, mailinglist, subscription form 5 5 Requires at least: 3.0.1 6 Tested up to: 3. 8.17 Stable tag: 2.3. 36 Tested up to: 3.9.1 7 Stable tag: 2.3.4 8 8 9 9 Sendit is a friendly and easy newsletter and mailing lists plugin for Wordpress, born to make newsletter delivery management a great experience. … … 29 29 * Sendit Pro Csv Export 30 30 * Sendit Pro Google analytics campaign tracker 31 * Sendit Splitter - Lists segmentation tool (new) 31 32 32 33 = Changelog = -
sendit/trunk/sendit.php
r953435 r956725 4 4 Plugin URI: http://www.giuseppesurace.com/sendit-wp-newsletter-mailing-list/ 5 5 Description: Wordpress newsletter plugin. Sendit is a friendly and easy newsletter and mailing lists plugin for WordPress, born to make newsletter delivery management a great experience. 6 Version: 2.3. 36 Version: 2.3.4 7 7 Author: Giuseppe Surace 8 8 Author URI: http://sendit.wordpressplanet.org
Note: See TracChangeset
for help on using the changeset viewer.