Plugin Directory

Changeset 2977099


Ignore:
Timestamp:
10/10/2023 02:38:00 PM (2 years ago)
Author:
laolaweb
Message:

Release 2.5.2

Location:
personio-integration-light
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • personio-integration-light/tags/2.5.2/classes/class-positions.php

    r2962403 r2977099  
    220220    public function setPositionQueryOrderByForGroup($orderby_statement): string
    221221    {
    222         return " wp_terms.name ASC, ".$orderby_statement;
     222        global $wpdb;
     223        return " ".$wpdb->terms.".name ASC, ".$orderby_statement;
    223224    }
    224225
  • personio-integration-light/tags/2.5.2/languages/wp-personio-integration-de_DE.po

    r2969547 r2977099  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Personio Integration Light 2.5.0\n"
     5"Project-Id-Version: WP Personio Integration Light 2.5.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-"
    77"integration-light\n"
  • personio-integration-light/tags/2.5.2/languages/wp-personio-integration-de_DE_formal.po

    r2969547 r2977099  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Personio Integration Light 2.5.0\n"
     5"Project-Id-Version: WP Personio Integration Light 2.5.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-"
    77"integration-light\n"
  • personio-integration-light/tags/2.5.2/languages/wp-personio-integration.pot

    r2969547 r2977099  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Personio Integration Light 2.5.0\n"
     5"Project-Id-Version: Personio Integration Light 2.5.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-integration-light\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • personio-integration-light/tags/2.5.2/personio-integration-light.php

    r2969547 r2977099  
    55 * Requires at least: 5.9
    66 * Requires PHP:      7.4
    7  * Version:           2.5.0
     7 * Version:           2.5.2
    88 * Author:            laOlaWeb
    99 * Author URI:        https://laolaweb.com
     
    1616
    1717// set version number
    18 const WP_PERSONIO_INTEGRATION_VERSION = '2.5.0';
     18const WP_PERSONIO_INTEGRATION_VERSION = '2.5.2';
    1919
    2020// save plugin-path
  • personio-integration-light/tags/2.5.2/readme.txt

    r2969547 r2977099  
    33Tags: personio, jobs, recruitment
    44Requires at least: 5.9.3
    5 Tested up to: 6.3.1
     5Tested up to: 6.3.2
    66Requires PHP: 7.4
    77License: GPL-2.0-or-later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
    9 Stable tag: 2.5.0
     9Stable tag: 2.5.2
    1010
    1111== Description ==
     
    303303* Fixed visibility of import button above listing in WordPress 6.3 or newer
    304304* Fixed visibility of back to list button in frontend
     305
     306= 2.5.1 =
     307* Fixed order by on grouping
     308
     309= 2.5.2 =
     310* Compatibility with ActivityPub to optionally publish positions from Personio in the fediverse (e.g. Mastodon)
     311* Compatibility with WordPres 6.3.2
     312* Removed unnecessary spaces around position description
  • personio-integration-light/trunk/classes/class-positions.php

    r2962403 r2977099  
    220220    public function setPositionQueryOrderByForGroup($orderby_statement): string
    221221    {
    222         return " wp_terms.name ASC, ".$orderby_statement;
     222        global $wpdb;
     223        return " ".$wpdb->terms.".name ASC, ".$orderby_statement;
    223224    }
    224225
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE.po

    r2969547 r2977099  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Personio Integration Light 2.5.0\n"
     5"Project-Id-Version: WP Personio Integration Light 2.5.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-"
    77"integration-light\n"
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE_formal.po

    r2969547 r2977099  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Personio Integration Light 2.5.0\n"
     5"Project-Id-Version: WP Personio Integration Light 2.5.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-"
    77"integration-light\n"
  • personio-integration-light/trunk/languages/wp-personio-integration.pot

    r2969547 r2977099  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Personio Integration Light 2.5.0\n"
     5"Project-Id-Version: Personio Integration Light 2.5.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-integration-light\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • personio-integration-light/trunk/personio-integration-light.php

    r2969547 r2977099  
    55 * Requires at least: 5.9
    66 * Requires PHP:      7.4
    7  * Version:           2.5.0
     7 * Version:           2.5.2
    88 * Author:            laOlaWeb
    99 * Author URI:        https://laolaweb.com
     
    1616
    1717// set version number
    18 const WP_PERSONIO_INTEGRATION_VERSION = '2.5.0';
     18const WP_PERSONIO_INTEGRATION_VERSION = '2.5.2';
    1919
    2020// save plugin-path
  • personio-integration-light/trunk/readme.txt

    r2969547 r2977099  
    33Tags: personio, jobs, recruitment
    44Requires at least: 5.9.3
    5 Tested up to: 6.3.1
     5Tested up to: 6.3.2
    66Requires PHP: 7.4
    77License: GPL-2.0-or-later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
    9 Stable tag: 2.5.0
     9Stable tag: 2.5.2
    1010
    1111== Description ==
     
    303303* Fixed visibility of import button above listing in WordPress 6.3 or newer
    304304* Fixed visibility of back to list button in frontend
     305
     306= 2.5.1 =
     307* Fixed order by on grouping
     308
     309= 2.5.2 =
     310* Compatibility with ActivityPub to optionally publish positions from Personio in the fediverse (e.g. Mastodon)
     311* Compatibility with WordPres 6.3.2
     312* Removed unnecessary spaces around position description
Note: See TracChangeset for help on using the changeset viewer.