Changeset 1765675
- Timestamp:
- 11/14/2017 06:57:50 AM (8 years ago)
- Location:
- unloq/trunk
- Files:
-
- 3 edited
-
autoloader/login/class-login.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
unloq.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
unloq/trunk/autoloader/login/class-login.php
r1765673 r1765675 307 307 { 308 308 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'))); 310 310 if (isset($_SESSION['unloq_enroll_checked'])) { 311 311 unset($_SESSION['unloq_enroll_checked']); … … 1102 1102 } 1103 1103 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'))); 1105 1105 wp_redirect($redirect_to); 1106 1106 exit; -
unloq/trunk/readme.txt
r1765673 r1765675 119 119 120 120 == Changelog == 121 = 2.1.16 = 122 * Login redirect filter now uses the default "login_redirect" 121 123 = 2.1.15 = 122 124 * Fixed setup bug with sites that do not have a name, to use a default site name -
unloq/trunk/unloq.php
r1765673 r1765675 3 3 * Plugin Name: UNLOQ Authentication 4 4 * Description: Perform UNLOQ.io authentications with the click of a button 5 * Version: 2.1.1 55 * Version: 2.1.16 6 6 * Author: UNLOQ.io 7 7 * Author URI: https://unloq.io … … 18 18 19 19 define('UQ_PLUGIN', 'unloq'); 20 define('UQ_VERSION', '2.1.1 5');20 define('UQ_VERSION', '2.1.16'); 21 21 define('UQ_VENDORS', plugin_dir_url(__FILE__) . 'vendors'); 22 22 define('UQ_VENDORS_DIR', plugin_dir_path(__FILE__) . 'vendors');
Note: See TracChangeset
for help on using the changeset viewer.