Changeset 3302183
- Timestamp:
- 05/28/2025 11:46:53 AM (10 months ago)
- Location:
- league-table-lite
- Files:
-
- 8 edited
- 1 copied
-
tags/1.21 (copied) (copied from league-table-lite/trunk)
-
tags/1.21/admin/class-daextletal-admin.php (modified) (2 diffs)
-
tags/1.21/init.php (modified) (1 diff)
-
tags/1.21/readme.txt (modified) (2 diffs)
-
tags/1.21/shared/class-daextletal-shared.php (modified) (2 diffs)
-
trunk/admin/class-daextletal-admin.php (modified) (2 diffs)
-
trunk/init.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shared/class-daextletal-shared.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
league-table-lite/tags/1.21/admin/class-daextletal-admin.php
r3294646 r3302183 614 614 public static function ac_initialize_options() { 615 615 616 if ( intval( get_option( 'daextletal_options_version' ), 10 ) < 2) {616 if ( intval( get_option( 'daextletal_options_version' ), 10 ) < 3 ) { 617 617 618 618 // Assign an instance of Daextletal_Shared. … … 624 624 625 625 // Update options version. 626 update_option( 'daextletal_options_version', ' 2' );626 update_option( 'daextletal_options_version', '3' ); 627 627 628 628 } -
league-table-lite/tags/1.21/init.php
r3302012 r3302183 3 3 * Plugin Name: League Table 4 4 * Description: Generates tables in your WordPress blog. (Lite version) 5 * Version: 1.2 05 * Version: 1.21 6 6 * Author: DAEXT 7 7 * Author URI: https://daext.com -
league-table-lite/tags/1.21/readme.txt
r3302012 r3302183 6 6 Tested up to: 6.8.1 7 7 Requires PHP: 7.2 8 Stable tag: 1.2 08 Stable tag: 1.21 9 9 License: GPLv3 10 10 … … 158 158 == Changelog == 159 159 160 = 1.21 = 161 162 *May 28, 2025* 163 164 * Updated the internal version of the plugin options to support recent changes. 165 160 166 = 1.20 = 161 167 -
league-table-lite/tags/1.21/shared/class-daextletal-shared.php
r3302012 r3302183 75 75 76 76 $this->data['slug'] = 'daextletal'; 77 $this->data['ver'] = '1.2 0';77 $this->data['ver'] = '1.21'; 78 78 $this->data['dir'] = substr( plugin_dir_path( __FILE__ ), 0, -7 ); 79 79 $this->data['url'] = substr( plugin_dir_url( __FILE__ ), 0, -7 ); … … 86 86 87 87 // Options Version ----------------------------------------------------------------------------------------. 88 $this->get( 'slug' ) . '_options_version' => ' 2',88 $this->get( 'slug' ) . '_options_version' => '3', 89 89 90 90 // General ------------------------------------------------------------------------------------------------. -
league-table-lite/trunk/admin/class-daextletal-admin.php
r3294646 r3302183 614 614 public static function ac_initialize_options() { 615 615 616 if ( intval( get_option( 'daextletal_options_version' ), 10 ) < 2) {616 if ( intval( get_option( 'daextletal_options_version' ), 10 ) < 3 ) { 617 617 618 618 // Assign an instance of Daextletal_Shared. … … 624 624 625 625 // Update options version. 626 update_option( 'daextletal_options_version', ' 2' );626 update_option( 'daextletal_options_version', '3' ); 627 627 628 628 } -
league-table-lite/trunk/init.php
r3302012 r3302183 3 3 * Plugin Name: League Table 4 4 * Description: Generates tables in your WordPress blog. (Lite version) 5 * Version: 1.2 05 * Version: 1.21 6 6 * Author: DAEXT 7 7 * Author URI: https://daext.com -
league-table-lite/trunk/readme.txt
r3302012 r3302183 6 6 Tested up to: 6.8.1 7 7 Requires PHP: 7.2 8 Stable tag: 1.2 08 Stable tag: 1.21 9 9 License: GPLv3 10 10 … … 158 158 == Changelog == 159 159 160 = 1.21 = 161 162 *May 28, 2025* 163 164 * Updated the internal version of the plugin options to support recent changes. 165 160 166 = 1.20 = 161 167 -
league-table-lite/trunk/shared/class-daextletal-shared.php
r3302012 r3302183 75 75 76 76 $this->data['slug'] = 'daextletal'; 77 $this->data['ver'] = '1.2 0';77 $this->data['ver'] = '1.21'; 78 78 $this->data['dir'] = substr( plugin_dir_path( __FILE__ ), 0, -7 ); 79 79 $this->data['url'] = substr( plugin_dir_url( __FILE__ ), 0, -7 ); … … 86 86 87 87 // Options Version ----------------------------------------------------------------------------------------. 88 $this->get( 'slug' ) . '_options_version' => ' 2',88 $this->get( 'slug' ) . '_options_version' => '3', 89 89 90 90 // General ------------------------------------------------------------------------------------------------.
Note: See TracChangeset
for help on using the changeset viewer.