Plugin Directory

Changeset 2675664


Ignore:
Timestamp:
02/09/2022 12:09:12 PM (4 years ago)
Author:
beyondsoftware
Message:

Version 2.2.10

Location:
beyondconnect/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • beyondconnect/trunk/assets/beyondconnect_backend.js

    r2315249 r2675664  
    2222window.onload = function () {
    2323    // Get the element with id="defaultOpen" and click on it
    24     document.getElementById("defaultOpen").click();
     24    const button = document.getElementById("defaultOpen");
     25    if (button !== null)
     26        button.click();
    2527};
  • beyondconnect/trunk/beyondConnect.php

    r2619484 r2675664  
    77Plugin URI: https://support.beyond-sw.com/hc/de/categories/360002442180
    88Description: beyondConnect connects WordPress with the beyond software services.
    9 Version: 2.2.9
     9Version: 2.2.10
    1010Author: Felix Stadelmann, beyond software
    1111Author URI: https://beyond-sw.com
  • beyondconnect/trunk/inc/Api/Widgets/TeachersWidget.php

    r2339795 r2675664  
    6464        echo '<ul>';
    6565
    66         $querystring = Beyond::getODataQueryString('Lehrer', ('lehrerId,' . $instance['field']), '', empty($instance['filter']) ? '' : $instance['filter'], empty($instance['top']) ? '' : $instance['top'], empty($instance['skip']) ? '' : $instance['skip'], empty($instance['orderby']) ? '' : $instance['orderby']);
     66        $querystring = Beyond::getODataQueryString(
     67            'Lehrer',
     68            '',
     69            ('lehrerId,' . $instance['field']),
     70            '',
     71            (empty($instance['filter']) ? '' : $instance['filter']),
     72            (empty($instance['top']) ? '' : $instance['top']),
     73            (empty($instance['skip']) ? '' : $instance['skip']),
     74            (empty($instance['orderby']) ? '' : $instance['orderby']));
    6775        $json_lehrer = Beyond::getValues($querystring, 'value', false);
    6876
  • beyondconnect/trunk/inc/Base/AuthenticationController.php

    r2367443 r2675664  
    6464    }
    6565
    66     public function authenticate($user = null, $username, $password)
     66    public function authenticate($user = null, $username = null, $password = null)
    6767    {
    6868        $option = get_option('beyondconnect_option');
  • beyondconnect/trunk/readme.txt

    r2619484 r2675664  
    44Donate link: https:/beyond-sw.com
    55Requires at least: 5.0
    6 Tested up to: 5.8.1
     6Tested up to: 5.9
    77Requires PHP: 7.1
    8 Stable tag: 2.2.9
     8Stable tag: 2.2.10
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2929
    3030== Changelog ==
     31= 2.2.10 =
     32* Bug fixes
    3133= 2.2.9 =
    3234* Bug fixes
Note: See TracChangeset for help on using the changeset viewer.