Plugin Directory

Changeset 1765675


Ignore:
Timestamp:
11/14/2017 06:57:50 AM (8 years ago)
Author:
unloqer
Message:

2.1.16

  • Login redirect filter now uses the default "login_redirect" and not “uq_login_redirect”
Location:
unloq/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • unloq/trunk/autoloader/login/class-login.php

    r1765673 r1765675  
    307307    {
    308308        parse_str($this->utility->rgar($_POST, 'query'), $query);
    309         $redirectTo = apply_filters('uq_login_redirect', $this->utility->rgar($query, 'redirect_to', admin_url('index.php')));
     309        $redirectTo = apply_filters('login_redirect', $this->utility->rgar($query, 'redirect_to', admin_url('index.php')));
    310310        if (isset($_SESSION['unloq_enroll_checked'])) {
    311311            unset($_SESSION['unloq_enroll_checked']);
     
    11021102        }
    11031103        parse_str($this->utility->rgar($_GET, 'query'), $query);
    1104         $redirect_to = apply_filters('uq_login_redirect', $this->utility->rgar($query, 'redirect_to', admin_url('index.php')));
     1104        $redirect_to = apply_filters('login_redirect', $this->utility->rgar($query, 'redirect_to', admin_url('index.php')));
    11051105        wp_redirect($redirect_to);
    11061106        exit;
  • unloq/trunk/readme.txt

    r1765673 r1765675  
    119119
    120120== Changelog ==
     121= 2.1.16 =
     122* Login redirect filter now uses the default "login_redirect"
    121123= 2.1.15 =
    122124* Fixed setup bug with sites that do not have a name, to use a default site name
  • unloq/trunk/unloq.php

    r1765673 r1765675  
    33 * Plugin Name:       UNLOQ Authentication
    44 * Description:       Perform UNLOQ.io authentications with the click of a button
    5  * Version:           2.1.15
     5 * Version:           2.1.16
    66 * Author:            UNLOQ.io
    77 * Author URI:        https://unloq.io
     
    1818
    1919define('UQ_PLUGIN', 'unloq');
    20 define('UQ_VERSION', '2.1.15');
     20define('UQ_VERSION', '2.1.16');
    2121define('UQ_VENDORS', plugin_dir_url(__FILE__) . 'vendors');
    2222define('UQ_VENDORS_DIR', plugin_dir_path(__FILE__) . 'vendors');
Note: See TracChangeset for help on using the changeset viewer.