Changeset 2236348
- Timestamp:
- 01/31/2020 10:43:04 AM (6 years ago)
- Location:
- wp-downgrade/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-downgrade.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-downgrade/trunk/readme.txt
r2089234 r2236348 4 4 Tags: Downgrade, Core, WP-Core, Version, Rollback, Upgrade, Update, Release, Versionskontrolle 5 5 Requires at least: 3.0.1 6 Tested up to: 5. 26 Tested up to: 5.3.2 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 66 66 67 67 == Changelog == 68 = 1.2.1 = 69 * compatibility with WordPress 5.3.2 70 * Bugfix for URL with language EN 71 68 72 = 1.2.0 = 69 73 * Advanced option: You are now able to manually edit the download link, if necessary. This allows, for example, a change of language. Or you can get the release from another source. -
wp-downgrade/trunk/wp-downgrade.php
r2009540 r2236348 4 4 Plugin URI: https://www.reisetiger.net 5 5 Description: WP Downgrade allows you to either downgrade or update WordPress Core to an arbitrary version of your choice. The version you choose is downloaded directly from wordpress.org and installed just like any regular release update. The target version WordPress allows you to update to remains constant until you enter a different one or deactivate the plugin either completely or by leaving the target version field empty. 6 Version: 1.2. 06 Version: 1.2.1 7 7 Author: Reisetiger 8 8 Author URI: https://www.reisetiger.net … … 166 166 167 167 $sprache = get_locale().'/'; 168 if ($sprache == 'en_US/' OR $sprache == 'en' ){168 if ($sprache == 'en_US/' OR $sprache == 'en' OR $sprache == 'en/'){ 169 169 $sprache = ''; 170 170 }; … … 204 204 } else { 205 205 $sprache = get_locale().'/'; 206 if ($sprache == 'en_US/' OR $sprache == 'en' ){206 if ($sprache == 'en_US/' OR $sprache == 'en' OR $sprache == 'en/'){ 207 207 $sprache = ''; 208 208 };
Note: See TracChangeset
for help on using the changeset viewer.