Changeset 1906377
- Timestamp:
- 07/09/2018 11:41:03 AM (8 years ago)
- Location:
- social-locker/trunk
- Files:
-
- 4 edited
-
bizpanda/admin/includes/leads.php (modified) (2 diffs)
-
bizpanda/admin/includes/stats.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
sociallocker-next.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-locker/trunk/bizpanda/admin/includes/leads.php
r1906051 r1906377 347 347 public static function pushLeadToZapier( $leadId, $isNew ) { 348 348 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; 351 352 352 353 if ( empty( $leadId ) ) return; … … 356 357 $fields = self::getCustomFields( $leadId ); 357 358 358 $newLeadHookUrl = get_option('opanda_zapier_hook_new_leads', false ); 359 359 360 $onlyNewLeads = get_option('opanda_zapier_only_new', false ); 360 361 $onlyConfirmed = get_option('opanda_zapier_only_confirmed', false ); -
social-locker/trunk/bizpanda/admin/includes/stats.php
r1906051 r1906377 288 288 public static function pushUnlockToZapier( $zapierData = array() ) { 289 289 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 294 294 $zapierData = apply_filters('opanda_zapier_data', $zapierData ); 295 295 -
social-locker/trunk/readme.txt
r1906051 r1906377 147 147 == Changelog == 148 148 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 149 154 <strong>v.5.2.5 - 8 Jul 2018</strong><br /> 150 155 <ul> -
social-locker/trunk/sociallocker-next.php
r1906051 r1906377 5 5 Description: 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! 6 6 Author: OnePress 7 Version: 5.2. 57 Version: 5.2.6 8 8 Author URI: http://byonepress.com 9 9 */ … … 53 53 'name' => 'sociallocker-next', 54 54 'title' => 'Social Locker', 55 'version' => '5.2. 5',55 'version' => '5.2.6', 56 56 'assembly' => 'free', 57 57 'lang' => 'en_US',
Note: See TracChangeset
for help on using the changeset viewer.