Plugin Directory

Changeset 1345184


Ignore:
Timestamp:
02/07/2016 11:43:55 AM (10 years ago)
Author:
pogidude
Message:

Deploy from git

Location:
magic-action-box/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • magic-action-box/trunk/lib/classes/ProsulumMabAdmin.php

    r1292020 r1345184  
    88    var $_optin_AweberApplicationId = '60e2f3cd';
    99    var $_optin_AweberAuthenticationUrl = 'https://auth.aweber.com/1.0/oauth/authorize_app/';
    10     var $_optin_AweberFormActionUrl = 'http://www.aweber.com/scripts/addlead.pl';
     10    var $_optin_AweberFormActionUrl = 'https://www.aweber.com/scripts/addlead.pl';
    1111    var $_optin_AweberListsTransient = '_mab_aweber_lists_transient';
    1212    var $_optin_ConstantContactKey = 'sz292ybks39us6j5ywnwy3ba';
  • magic-action-box/trunk/lib/integration/mailchimp/Mailchimp.php

    r1158464 r1345184  
    167167        curl_setopt($this->ch, CURLOPT_CONNECTTIMEOUT, 30);
    168168        curl_setopt($this->ch, CURLOPT_TIMEOUT, $opts['timeout']);
     169        curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, false);
    169170
    170171
  • magic-action-box/trunk/magic-action-box.php

    r1292020 r1345184  
    44 * Plugin URI: http://magicactionbox.com
    55 * Description: Supercharge your blog posts!
    6  * Version: 2.17
     6 * Version: 2.17.1
    77 * Author: Prosulum, LLC
    88 * Author URI: http://prosulum.com
     
    1010 */
    1111
    12 define( 'MAB_VERSION', '2.17');
     12define( 'MAB_VERSION', '2.17.1');
    1313//e.g. /var/www/example.com/wordpress/wp-content/plugins/after-post-action-box
    1414define( "MAB_DIR", plugin_dir_path( __FILE__ ) );
  • magic-action-box/trunk/readme.txt

    r1292020 r1345184  
    55Requires at least: 3.5
    66Tested up to: 4.4
    7 Stable tag: 2.17
     7Stable tag: 2.17.1
    88
    99Magic Action Box let's you display professional looking opt-in forms and feature boxes in your WordPress site.
     
    100100
    101101== Changelog ==
     102= 2.17.1 =
     103*2016-02-07*
     104*Remove non-working implementation of style preview
     105*Add curl option to disable verify ssl peers on mailchimp api
     106
    102107= 2.17 =
    103108*2015-11-22*
  • magic-action-box/trunk/views/settings/dashboard.php

    r1167732 r1345184  
    6969        <div class="feature-section">
    7070            <ul class="bullet">
    71                 <li>Restore built-in integration with Constant Contact</li>
    72                 <li>Add debug tab in dashboard</li>
    73                 <li>Some refactoring, nothing else exciting</li>
     71                <li>Remove non-working implementation of style preview</li>
     72                <li>Add curl option to disable verify ssl peers on mailchimp api</li>
    7473            </ul>
    7574        </div>
  • magic-action-box/trunk/views/settings/style-settings.php

    r1292020 r1345184  
    1313    <div class="wrap">
    1414
    15         <div id="actionbox-preview"></div>
     15<!--        <div id="actionbox-preview"></div>-->
    1616
    1717<form method="post" action="<?php echo add_query_arg( array() ); ?>" id="mab-style-settings-form">
    1818
    19     <div class="mab-panel-controls">
    20         <label><?php _e('Select action box to preview: ', 'mab'); ?></label><select id="actionbox-preview-dropdown" name="mab-design[preview_action_box]">
    21             <?php foreach($data['actionboxes'] as $ab): ?>
    22                 <option value="<?php echo $ab->ID; ?>" <?php selected($selectedActionBox, $ab->ID); ?>><?php echo $ab->post_title; ?></option>
    23             <?php endforeach; ?>
     19<!--    <div class="mab-panel-controls">
     20        <label><?php /*_e('Select action box to preview: ', 'mab'); */?></label><select id="actionbox-preview-dropdown" name="mab-design[preview_action_box]">
     21            <?php /*foreach($data['actionboxes'] as $ab): */?>
     22                <option value="<?php /*echo $ab->ID; */?>" <?php /*selected($selectedActionBox, $ab->ID); */?>><?php /*echo $ab->post_title; */?></option>
     23            <?php /*endforeach; */?>
    2424        </select>
    25         <a href="#fullscreen" class="button mab-fullscreen-toggle" data-enablefullscreen="1"><?php _e('Fullscreen', 'mab'); ?></a>
    26     </div>
     25        <a href="#fullscreen" class="button mab-fullscreen-toggle" data-enablefullscreen="1"><?php /*_e('Fullscreen', 'mab'); */?></a>
     26    </div>-->
    2727
    2828    <?php if( isset( $key ) ) : ?>
     
    3434        <input id="mab-style-title" size="30" name="mab-design[title]" value="<?php echo $settings['title']; ?>" type="text" />
    3535    </p>
    36     <p>
    37         <label><?php _e('Base Style:', 'mab'); ?></label>
     36<!--    <p>
     37        <label><?php /*_e('Base Style:', 'mab'); */?></label>
    3838        <select id="base-style" name="mab-design[base_style]">
    39             <option value=""><?php _e('None', 'mab'); ?></option>
    40             <?php foreach($baseStyles as $key => $s): ?>
    41                 <option value="<?php echo $key; ?>" <?php selected($selectedBaseStyle, $key); ?> ><?php echo $s['name']; ?></option>
    42             <?php endforeach; ?>
     39            <option value=""><?php /*_e('None', 'mab'); */?></option>
     40            <?php /*foreach($baseStyles as $key => $s): */?>
     41                <option value="<?php /*echo $key; */?>" <?php /*selected($selectedBaseStyle, $key); */?> ><?php /*echo $s['name']; */?></option>
     42            <?php /*endforeach; */?>
    4343        </select>
    44     </p>
     44    </p>-->
    4545   
    4646    <h3 id="mab-style-settings-tabs" class="nav-tab-wrapper">
Note: See TracChangeset for help on using the changeset viewer.