Plugin Directory

Changeset 3213999


Ignore:
Timestamp:
12/28/2024 12:02:43 AM (15 months ago)
Author:
denisaleman
Message:

v1.0.3

Location:
login-links/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • login-links/trunk/login-links.php

    r3213998 r3213999  
    33 * Plugin Name: Login Links
    44 * Description: A plugin to create login links for users.
    5  * Version: 1.0.2
     5 * Version: 1.0.3
    66 * Author: Denis Alemán
    77 * Author URI: https://wordpress.org/plugins/login-links/
     
    1414
    1515define('LL_PLUGIN_DIR', plugin_dir_url(__FILE__));
    16 define('LL_PLUGIN_VERSION', '1.0.2');
     16define('LL_PLUGIN_VERSION', '1.0.3');
    1717
    1818require_once plugin_dir_path(__FILE__) . 'migrations/create_login_links_table.php';
     
    2626// Bootstrap
    2727register_activation_hook(__FILE__, 'll_create_database_table');
     28register_activation_hook(__FILE__, 'll_create_database_table2');
     29register_activation_hook(__FILE__, 'll_create_database_table3');
    2830register_deactivation_hook(__FILE__, 'll_delete_database_table');
     31register_deactivation_hook(__FILE__, 'll_delete_database_table2');
     32register_deactivation_hook(__FILE__, 'll_delete_database_table3');
    2933LLLinkAutoLogin::listenLoginAttempts();
    3034LLUserTransientCleaner::init();
  • login-links/trunk/migrations/create_login_links_v2_table.php

    r3213998 r3213999  
    2727}
    2828
    29 function ll_delete_database_table() {
     29function ll_delete_database_table2() {
    3030    global $wpdb;
    3131    $table_name = $wpdb->prefix . 'login_links2';
  • login-links/trunk/readme.txt

    r3213998 r3213999  
    55Requires at least: 5.0
    66Tested up to: 6.7
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.3
    88Requires PHP: 7.0
    99License: GPLv3
Note: See TracChangeset for help on using the changeset viewer.