Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Bump to version 1.1.2
Browse files Browse the repository at this point in the history
1. Only attempt to create FrontDesk on funnel creation, not on updates
and creation.
  • Loading branch information
Aaron Huisinga committed Oct 15, 2015
1 parent 68aa10d commit 0e764ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions classes/class-homes-report.php
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,9 @@ public function create_frontdesk_campaign($post_ID)
if (get_post_type($post_ID) != $this->token)
return false;

if (($_POST['post_status'] != 'publish') || ($_POST['original_post_status'] == 'publish'))
return false;

global $wpdb;
$title = get_the_title($post_ID);
$permalink = get_permalink($post_ID);
Expand Down
4 changes: 2 additions & 2 deletions homes-report.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php namespace ColdTurkey\HomesReport;
/*
* Plugin Name: Homes Report
* Version: 1.1.1
* Version: 1.1.2
* Plugin URI: http://www.coldturkeygroup.com/
* Description: WordPress funnel that collects visitor contact information in exchange for a customized report from a Real Estate agent.
* Author: Cold Turkey Group
Expand All @@ -20,7 +20,7 @@
define('HOMES_REPORT_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));

if (!defined('HOMES_REPORT_PLUGIN_VERSION'))
define('HOMES_REPORT_PLUGIN_VERSION', '1.1.1');
define('HOMES_REPORT_PLUGIN_VERSION', '1.1.2');

require_once('classes/class-homes-report.php');

Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: Aaron Huisinga
Tags: real estate, platform, homes report
Requires at least: 3.5
Tested up to: 4.3
Stable tag: 1.1.1
Stable tag: 1.1.2

WordPress funnel that collects visitor contact information in exchange for a customized report from a Real Estate agent.

Expand Down

0 comments on commit 0e764ba

Please sign in to comment.