Contact Listing for WP Job Manager - Version 1.0.1

Version Description

Download this release

Release Info

Developer adampickering
Plugin Icon wp plugin Contact Listing for WP Job Manager
Version 1.0.1
Comparing to
See all releases

Code changes from version 1.0.0 to 1.0.1

Files changed (2) hide show
  1. readme.txt +6 -2
  2. wp-job-manager-contact-listing.php +3 -2
readme.txt CHANGED
@@ -7,7 +7,7 @@ Contributors: spencerfinnell
7
  Tags: job, job listing, job apply, gravity forms, wp job manager, gravity forms, gravityforms, ninja forms, ninjaforms, contact form 7, cf7
8
  Requires at least: 3.5
9
  Tested up to: 3.9.1
10
- Stable Tag: 1.0.0
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
13
 
@@ -79,6 +79,10 @@ If you have purchased Jobify and still have questions, please post on our dedica
79
 
80
  == Changelog ==
81
 
82
- = 1.0.0: May 31, 2013 =
 
 
 
 
83
 
84
  * First official release!
7
  Tags: job, job listing, job apply, gravity forms, wp job manager, gravity forms, gravityforms, ninja forms, ninjaforms, contact form 7, cf7
8
  Requires at least: 3.5
9
  Tested up to: 3.9.1
10
+ Stable Tag: 1.0.1
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
13
 
79
 
80
  == Changelog ==
81
 
82
+ = 1.0.1: July 24, 2014 =
83
+
84
+ * Fix: Update for compatibility with older PHP versions to avoid errors.
85
+
86
+ = 1.0.0: July 23, 2014 =
87
 
88
  * First official release!
wp-job-manager-contact-listing.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Contact job listings or resume listings with your choice of Gravity Forms, Ninja Forms, or Contact Form 7
6
  * Author: Astoundify
7
  * Author URI: http://astoundify.com
8
- * Version: 1.0.0
9
  * Text Domain: wp-job-manager-contact-listing
10
  */
11
 
@@ -122,7 +122,8 @@ class Astoundify_Job_Manager_Contact_Listing {
122
  return;
123
  }
124
 
125
- $plugin = $this->supported_plugins()[ self::$active_plugin ];
 
126
 
127
  $plugin_file = sprintf( $this->plugin_dir . 'includes/forms/%s.php', self::$active_plugin );
128
  $plugin_class = sprintf( 'Astoundify_Job_Manager_Contact_Listing_Form_%s', $plugin[ 'class' ] );
5
  * Description: Contact job listings or resume listings with your choice of Gravity Forms, Ninja Forms, or Contact Form 7
6
  * Author: Astoundify
7
  * Author URI: http://astoundify.com
8
+ * Version: 1.0.1
9
  * Text Domain: wp-job-manager-contact-listing
10
  */
11
 
122
  return;
123
  }
124
 
125
+ $plugins = $this->supported_plugins();
126
+ $plugin = $plugins[ self::$active_plugin ];
127
 
128
  $plugin_file = sprintf( $this->plugin_dir . 'includes/forms/%s.php', self::$active_plugin );
129
  $plugin_class = sprintf( 'Astoundify_Job_Manager_Contact_Listing_Form_%s', $plugin[ 'class' ] );