Plugin Directory

Changeset 2936466


Ignore:
Timestamp:
07/10/2023 10:00:16 AM (3 years ago)
Author:
wpmarkuk
Message:

Release version 3.0.7 fixing bugs with WordPress 6.2

Location:
wpbroadbean
Files:
44 added
4 edited

Legend:

Unmodified
Added
Removed
  • wpbroadbean/trunk/inc/applications/application-filters.php

    r2077292 r2936466  
    135135    // allow all the notification parts to be filtered.
    136136    $recipients = apply_filters( 'wpbb_default_notification_recipients', $recipients, $application_id, $attachment_ids, $job_id );
    137     $headers = apply_filters( 'wpbb_default_notification_recipients', $headers, $application_id, $attachment_ids, $job_id );
    138     $attachments = apply_filters( 'wpbb_default_notification_recipients', $attachments, $application_id, $attachment_ids, $job_id );
     137    $headers = apply_filters( 'wpbb_default_notification_headers', $headers, $application_id, $attachment_ids, $job_id );
     138    $attachments = apply_filters( 'wpbb_default_notification_attachments', $attachments, $application_id, $attachment_ids, $job_id );
    139139    $notification_content = apply_filters( 'wpbb_default_notification_content', $notification_content, $application_id, $attachment_ids, $job_id );
    140140
  • wpbroadbean/trunk/inc/functions.php

    r2073778 r2936466  
    189189
    190190    // turn category terms into arrays.
    191     $wpbb_tax = wp_strip_all_tags( $sent_terms );
     191    $wpbb_tax = wp_strip_all_tags( (string) $sent_terms );
    192192    $wpbb_taxonomy_terms = explode( '|', $wpbb_tax );
    193193
  • wpbroadbean/trunk/readme.txt

    r2391467 r2936466  
    55Requires PHP: 5.6
    66Tested up to: 5.5
    7 Stable tag: 3.0.6
     7Stable tag: 3.0.7
    88Donate link: https://store.highrise.digital/downloads/wpbroadbean-support-docs/
    99License: GPLv3 or later
     
    1313
    1414== Description ==
     15
     16*This plugin is no longer being developed or maintained. We recommend [JobRelay](https://jobrelay.io) for integrating WordPress with Broadbean.
     17
    1518The WP Broadbean plugin provides **developers** with a scaffolding to integrate Broadbean with a WordPress website. The plugin is not a plug-and-play solution but offers the tools needed to get started integrating a WordPress website with Broadbean.
    1619
  • wpbroadbean/trunk/wpbroadbean.php

    r2155554 r2936466  
    44Plugin URI: https://highrise.digital/products/wpbroadbean-wordpress-plugin/
    55Description: A plugin which integrates <a href="https://www.broadbean.com/uk/products/features/job-posting-distribution/">Broadbean job posting and distribution</a> with WordPress. It allows jobs written in Broadbean to be distributed to a WordPress site and have applications made to those jobs in WordPress delivered back to Broadbean.
    6 Version: 3.0.6
     6Version: 3.0.7
    77Author: Highrise Digital
    88Author URI: https://highrise.digital
     
    3232
    3333// Define plugin version constant and db version constant.
    34 define( 'WPBB_PLUGIN_VERSION', '3.0.5' );
     34define( 'WPBB_PLUGIN_VERSION', '3.0.7' );
    3535define( 'WPBB_PLUGIN_DB_VERSION', 2 );
    3636
Note: See TracChangeset for help on using the changeset viewer.