Plugin Directory

Changeset 1906377


Ignore:
Timestamp:
07/09/2018 11:41:03 AM (8 years ago)
Author:
OnePressMedia
Message:

v.5.2.6 released

Location:
social-locker/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • social-locker/trunk/bizpanda/admin/includes/leads.php

    r1906051 r1906377  
    347347    public static function pushLeadToZapier( $leadId, $isNew ) {
    348348        global $wpdb;
    349 
    350         if ( empty( trim( get_option('opanda_zapier_hook_new_leads', "" ) ) )) return;
     349       
     350        $newLeadHookUrl = trim( get_option('opanda_zapier_hook_new_leads', "" ) );
     351        if ( empty( $newLeadHookUrl )) return;
    351352
    352353        if ( empty( $leadId ) ) return;
     
    356357        $fields = self::getCustomFields( $leadId );
    357358       
    358         $newLeadHookUrl = get_option('opanda_zapier_hook_new_leads', false );
     359
    359360        $onlyNewLeads = get_option('opanda_zapier_only_new', false );
    360361        $onlyConfirmed = get_option('opanda_zapier_only_confirmed', false );
  • social-locker/trunk/bizpanda/admin/includes/stats.php

    r1906051 r1906377  
    288288    public static function pushUnlockToZapier( $zapierData = array() ) {
    289289        global $wpdb;
    290 
    291         if ( empty( trim( get_option('opanda_zipier_hook_new_unlocks', "" ) ) )) return;     
    292         $newUnlockHookUrl = get_option('opanda_zipier_hook_new_unlocks', false );
    293                 
     290       
     291        $newUnlockHookUrl = trim( get_option('opanda_zipier_hook_new_unlocks', "" ) );
     292        if ( empty( $newUnlockHookUrl ) ) return;     
     293   
    294294        $zapierData = apply_filters('opanda_zapier_data', $zapierData );
    295295
  • social-locker/trunk/readme.txt

    r1906051 r1906377  
    147147== Changelog ==
    148148
     149<strong>v.5.2.6 - 9 Jul 2018</strong><br />
     150<ul>
     151<li>FIXED: The error in the file leads.php #350.</li>
     152</ul>
     153
    149154<strong>v.5.2.5 - 8 Jul 2018</strong><br />
    150155<ul>
  • social-locker/trunk/sociallocker-next.php

    r1906051 r1906377  
    55Description: Social Locker is a set of social buttons and a locker in one bottle. <strong>Give people a reason</strong> why they need to click your social buttons. Ask people to “pay” with a Like/Tweet/+1 to get access to your content, to get discount, to download, to watch a video, to view a funny picture or so. And it will help you to get more likes/tweets/+1s, traffic and customers!
    66Author: OnePress
    7 Version: 5.2.5
     7Version: 5.2.6
    88Author URI: http://byonepress.com
    99*/
     
    5353        'name'          => 'sociallocker-next',
    5454        'title'         => 'Social Locker',
    55         'version'       => '5.2.5',
     55        'version'       => '5.2.6',
    5656        'assembly'      => 'free',
    5757        'lang'          => 'en_US',
Note: See TracChangeset for help on using the changeset viewer.