Changeset 1753777
- Timestamp:
- 10/27/2017 10:00:11 AM (8 years ago)
- Location:
- unloq/trunk
- Files:
-
- 3 edited
-
autoloader/class-utility.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
unloq.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
unloq/trunk/autoloader/class-utility.php
r1743724 r1753777 512 512 if (class_exists('ITSEC_Core')) return true; 513 513 if (class_exists('WPS_Hide_Login')) return true; 514 if (class_exists('c_ws_plugin__s2member_access_cap_times')) return true; 514 515 return false; 515 516 } -
unloq/trunk/readme.txt
r1752352 r1753777 119 119 120 120 == Changelog == 121 = 2.1.13 = 122 * Added compatibility fixes with other auth plugins by delaying the plugin load until the "plugins-loaded" action 121 123 = 2.1.12 = 122 124 * All JavaScript assets now wait for the document ready event -
unloq/trunk/unloq.php
r1752352 r1753777 3 3 * Plugin Name: UNLOQ Authentication 4 4 * Description: Perform UNLOQ.io authentications with the click of a button 5 * Version: 2.1.1 25 * Version: 2.1.13 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 2');20 define('UQ_VERSION', '2.1.13'); 21 21 define('UQ_VENDORS', plugin_dir_url(__FILE__) . 'vendors'); 22 22 define('UQ_VENDORS_DIR', plugin_dir_path(__FILE__) . 'vendors'); … … 27 27 * admin-specific hooks, and public-facing site hooks. 28 28 */ 29 require plugin_dir_path(__FILE__) . 'includes/class-core.php'; 29 function load_wp_unloq_core() { 30 require plugin_dir_path(__FILE__) . 'includes/class-core.php'; 31 add_action( 'admin_init', 'load_wp_unloq' ); 32 } 33 30 34 31 35 function load_wp_unloq() { … … 36 40 $activator->activate(); 37 41 } 38 add_action( 'admin_init', 'load_wp_unloq' ); 42 43 add_action('plugins_loaded', 'load_wp_unloq_core', 1);
Note: See TracChangeset
for help on using the changeset viewer.