Plugin Directory

Changeset 2236348


Ignore:
Timestamp:
01/31/2020 10:43:04 AM (6 years ago)
Author:
Reisetiger
Message:

Commit 1.2.1

Location:
wp-downgrade/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-downgrade/trunk/readme.txt

    r2089234 r2236348  
    44Tags: Downgrade, Core, WP-Core, Version, Rollback, Upgrade, Update, Release, Versionskontrolle
    55Requires at least: 3.0.1
    6 Tested up to: 5.2
     6Tested up to: 5.3.2
    77Stable tag: trunk
    88License: GPLv2 or later
     
    6666
    6767== Changelog ==
     68= 1.2.1 =
     69* compatibility with WordPress 5.3.2
     70* Bugfix for URL with language EN
     71
    6872= 1.2.0 =
    6973* 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  
    44Plugin URI: https://www.reisetiger.net
    55Description: 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.0
     6Version: 1.2.1
    77Author: Reisetiger
    88Author URI: https://www.reisetiger.net
     
    166166
    167167$sprache = get_locale().'/';
    168 if ($sprache == 'en_US/' OR $sprache == 'en'){
     168if ($sprache == 'en_US/' OR $sprache == 'en' OR $sprache == 'en/'){
    169169  $sprache = '';
    170170  };
     
    204204    } else {     
    205205      $sprache = get_locale().'/';
    206       if ($sprache == 'en_US/' OR $sprache == 'en'){
     206      if ($sprache == 'en_US/' OR $sprache == 'en' OR $sprache == 'en/'){
    207207        $sprache = '';
    208208        };
Note: See TracChangeset for help on using the changeset viewer.