Changeset 3091929
- Timestamp:
- 05/24/2024 07:39:04 AM (21 months ago)
- Location:
- flywp
- Files:
-
- 10 edited
- 1 copied
-
tags/1.1 (copied) (copied from flywp/trunk)
-
tags/1.1/flywp.php (modified) (2 diffs)
-
tags/1.1/includes/Frontend/MagicLogin.php (modified) (1 diff)
-
tags/1.1/languages/flywp.pot (modified) (3 diffs)
-
tags/1.1/readme.txt (modified) (2 diffs)
-
tags/1.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/flywp.php (modified) (2 diffs)
-
trunk/includes/Frontend/MagicLogin.php (modified) (1 diff)
-
trunk/languages/flywp.pot (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
flywp/tags/1.1/flywp.php
r3032189 r3091929 4 4 * Plugin URI: https://flywp.com 5 5 * Description: Helper plugin for FlyWP 6 * Version: 1. 06 * Version: 1.1 7 7 * Author: FlyWP 8 8 * Author URI: https://flywp.com/?utm_source=wporg&utm_medium=banner&utm_campaign=author-uri … … 42 42 * @var string 43 43 */ 44 public $version = '1. 0';44 public $version = '1.1'; 45 45 46 46 /** -
flywp/tags/1.1/includes/Frontend/MagicLogin.php
r2926989 r3091929 77 77 $user = get_user_by( 'login', $username ); 78 78 79 // if user not found, use the first admin 79 80 if ( ! $user ) { 80 $this->redirect_to_admin(); 81 $admins = get_users( [ 'role' => 'administrator', 'mumber' => 1 ] ); 82 83 if ( ! $admins ) { 84 $this->redirect_to_home(); 85 } 86 87 $user = $admins[0]; 81 88 } 82 89 -
flywp/tags/1.1/languages/flywp.pot
r3032189 r3091929 2 2 msgid "" 3 3 msgstr "" 4 "Project-Id-Version: FlyWP 1. 0\n"4 "Project-Id-Version: FlyWP 1.1\n" 5 5 "Report-Msgid-Bugs-To: https://github.com/flywp/flywp-helper/issues\n" 6 6 "Last-Translator: [email protected]\n" … … 9 9 "Content-Type: text/plain; charset=UTF-8\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "POT-Creation-Date: 2024-0 2-06T13:21:16+00:00\n"11 "POT-Creation-Date: 2024-05-24T07:30:23+00:00\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 "X-Generator: WP-CLI 2. 9.0\n"13 "X-Generator: WP-CLI 2.10.0\n" 14 14 "X-Domain: flywp\n" 15 15 16 16 #. Plugin Name of the plugin 17 17 #. Author of the plugin 18 #: flywp.php 18 19 #: includes/Admin.php:40 19 20 #: includes/Admin.php:41 … … 23 24 24 25 #. Plugin URI of the plugin 26 #: flywp.php 25 27 msgid "https://flywp.com" 26 28 msgstr "" 27 29 28 30 #. Description of the plugin 31 #: flywp.php 29 32 msgid "Helper plugin for FlyWP" 30 33 msgstr "" 31 34 32 35 #. Author URI of the plugin 36 #: flywp.php 33 37 msgid "https://flywp.com/?utm_source=wporg&utm_medium=banner&utm_campaign=author-uri" 34 38 msgstr "" -
flywp/tags/1.1/readme.txt
r3032189 r3091929 5 5 Tested up to: 6.4 6 6 Requires PHP: 7.4 7 Stable tag: 1. 07 Stable tag: 1.1 8 8 Requires PHP: 7.1 or higher 9 9 License: GPLv2 or later … … 54 54 55 55 == Changelog == 56 57 = v1.1 (24 May, 2024) = 58 59 * **Improved:** Magic login wasn't working when a site was migrated due to username mismatch. Now it'll work nevertheless. 56 60 57 61 = v1.0 (06 February, 2024) = -
flywp/tags/1.1/vendor/composer/installed.php
r3032189 r3091929 2 2 'root' => array( 3 3 'name' => 'flywp/flywp', 4 'pretty_version' => '1. 0',5 'version' => '1. 0.0.0',6 'reference' => NULL,4 'pretty_version' => '1.1', 5 'version' => '1.1.0.0', 6 'reference' => null, 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'flywp/flywp' => array( 14 'pretty_version' => '1. 0',15 'version' => '1. 0.0.0',16 'reference' => NULL,14 'pretty_version' => '1.1', 15 'version' => '1.1.0.0', 16 'reference' => null, 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
flywp/trunk/flywp.php
r3032189 r3091929 4 4 * Plugin URI: https://flywp.com 5 5 * Description: Helper plugin for FlyWP 6 * Version: 1. 06 * Version: 1.1 7 7 * Author: FlyWP 8 8 * Author URI: https://flywp.com/?utm_source=wporg&utm_medium=banner&utm_campaign=author-uri … … 42 42 * @var string 43 43 */ 44 public $version = '1. 0';44 public $version = '1.1'; 45 45 46 46 /** -
flywp/trunk/includes/Frontend/MagicLogin.php
r2926989 r3091929 77 77 $user = get_user_by( 'login', $username ); 78 78 79 // if user not found, use the first admin 79 80 if ( ! $user ) { 80 $this->redirect_to_admin(); 81 $admins = get_users( [ 'role' => 'administrator', 'mumber' => 1 ] ); 82 83 if ( ! $admins ) { 84 $this->redirect_to_home(); 85 } 86 87 $user = $admins[0]; 81 88 } 82 89 -
flywp/trunk/languages/flywp.pot
r3032189 r3091929 2 2 msgid "" 3 3 msgstr "" 4 "Project-Id-Version: FlyWP 1. 0\n"4 "Project-Id-Version: FlyWP 1.1\n" 5 5 "Report-Msgid-Bugs-To: https://github.com/flywp/flywp-helper/issues\n" 6 6 "Last-Translator: [email protected]\n" … … 9 9 "Content-Type: text/plain; charset=UTF-8\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "POT-Creation-Date: 2024-0 2-06T13:21:16+00:00\n"11 "POT-Creation-Date: 2024-05-24T07:30:23+00:00\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 "X-Generator: WP-CLI 2. 9.0\n"13 "X-Generator: WP-CLI 2.10.0\n" 14 14 "X-Domain: flywp\n" 15 15 16 16 #. Plugin Name of the plugin 17 17 #. Author of the plugin 18 #: flywp.php 18 19 #: includes/Admin.php:40 19 20 #: includes/Admin.php:41 … … 23 24 24 25 #. Plugin URI of the plugin 26 #: flywp.php 25 27 msgid "https://flywp.com" 26 28 msgstr "" 27 29 28 30 #. Description of the plugin 31 #: flywp.php 29 32 msgid "Helper plugin for FlyWP" 30 33 msgstr "" 31 34 32 35 #. Author URI of the plugin 36 #: flywp.php 33 37 msgid "https://flywp.com/?utm_source=wporg&utm_medium=banner&utm_campaign=author-uri" 34 38 msgstr "" -
flywp/trunk/readme.txt
r3032189 r3091929 5 5 Tested up to: 6.4 6 6 Requires PHP: 7.4 7 Stable tag: 1. 07 Stable tag: 1.1 8 8 Requires PHP: 7.1 or higher 9 9 License: GPLv2 or later … … 54 54 55 55 == Changelog == 56 57 = v1.1 (24 May, 2024) = 58 59 * **Improved:** Magic login wasn't working when a site was migrated due to username mismatch. Now it'll work nevertheless. 56 60 57 61 = v1.0 (06 February, 2024) = -
flywp/trunk/vendor/composer/installed.php
r3032189 r3091929 2 2 'root' => array( 3 3 'name' => 'flywp/flywp', 4 'pretty_version' => '1. 0',5 'version' => '1. 0.0.0',6 'reference' => NULL,4 'pretty_version' => '1.1', 5 'version' => '1.1.0.0', 6 'reference' => null, 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'flywp/flywp' => array( 14 'pretty_version' => '1. 0',15 'version' => '1. 0.0.0',16 'reference' => NULL,14 'pretty_version' => '1.1', 15 'version' => '1.1.0.0', 16 'reference' => null, 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.