WP Job Manager - Version 1.9.2

Version Description

  • Fix missing parameter in application_details_url causing URLs to be missing when applying.
Download this release

Release Info

Developer mikejolley
Plugin Icon 128x128 WP Job Manager
Version 1.9.2
Comparing to
See all releases

Code changes from version 1.9.1 to 1.9.2

includes/class-wp-job-manager-post-types.php CHANGED
@@ -417,7 +417,7 @@ class WP_Job_Manager_Post_Types {
417
  /**
418
  * The application content when the application method is a url
419
  */
420
- public function application_details_url() {
421
  get_job_manager_template( 'job-application-url.php', array( 'apply' => $apply ) );
422
  }
423
  }
417
  /**
418
  * The application content when the application method is a url
419
  */
420
+ public function application_details_url( $apply ) {
421
  get_job_manager_template( 'job-application-url.php', array( 'apply' => $apply ) );
422
  }
423
  }
languages/wp-job-manager.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the WP Job Manager package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP Job Manager 1.9.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
7
- "POT-Creation-Date: 2014-04-06 12:39:33+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -513,7 +513,7 @@ msgstr ""
513
  msgid "Query limit reached"
514
  msgstr ""
515
 
516
- #: deploy/includes/class-wp-job-manager-install.php:40
517
  #: includes/class-wp-job-manager-install.php:39
518
  msgid "Employer"
519
  msgstr ""
2
  # This file is distributed under the same license as the WP Job Manager package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP Job Manager 1.9.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
7
+ "POT-Creation-Date: 2014-04-06 21:38:27+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
513
  msgid "Query limit reached"
514
  msgstr ""
515
 
516
+ #: deploy/includes/class-wp-job-manager-install.php:39
517
  #: includes/class-wp-job-manager-install.php:39
518
  msgid "Employer"
519
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=mike.jol
4
  Tags: job listing, job board, job, jobs, company, hiring, employment, employees, candidate, freelance, internship
5
  Requires at least: 3.8
6
  Tested up to: 3.8
7
- Stable tag: 1.9.1
8
 
9
  Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
10
 
@@ -90,6 +90,9 @@ For more information, [read the documentation](https://github.com/mikejolley/wp-
90
 
91
  == Changelog ==
92
 
 
 
 
93
  = 1.9.1 =
94
  * Removed resource heavy 'default_meta' function from the installation process.
95
 
4
  Tags: job listing, job board, job, jobs, company, hiring, employment, employees, candidate, freelance, internship
5
  Requires at least: 3.8
6
  Tested up to: 3.8
7
+ Stable tag: 1.9.2
8
 
9
  Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
10
 
90
 
91
  == Changelog ==
92
 
93
+ = 1.9.2 =
94
+ * Fix missing parameter in application_details_url causing URLs to be missing when applying.
95
+
96
  = 1.9.1 =
97
  * Removed resource heavy 'default_meta' function from the installation process.
98
 
wp-job-manager.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Job Manager
4
  Plugin URI: http://mikejolley.com/projects/wp-job-manager/
5
  Description: Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
6
- Version: 1.9.1
7
  Author: Mike Jolley
8
  Author URI: http://mikejolley.com
9
  Requires at least: 3.8
@@ -30,7 +30,7 @@ class WP_Job_Manager {
30
  */
31
  public function __construct() {
32
  // Define constants
33
- define( 'JOB_MANAGER_VERSION', '1.9.1' );
34
  define( 'JOB_MANAGER_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
35
  define( 'JOB_MANAGER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
36
 
3
  Plugin Name: WP Job Manager
4
  Plugin URI: http://mikejolley.com/projects/wp-job-manager/
5
  Description: Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
6
+ Version: 1.9.2
7
  Author: Mike Jolley
8
  Author URI: http://mikejolley.com
9
  Requires at least: 3.8
30
  */
31
  public function __construct() {
32
  // Define constants
33
+ define( 'JOB_MANAGER_VERSION', '1.9.2' );
34
  define( 'JOB_MANAGER_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
35
  define( 'JOB_MANAGER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
36