diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c6c138..93bc0bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 6.0.1 (released 2019-08-08) + +- Remove custom login error message + ## 6.0.0 (released 2019-06-09) - Remove disable api feature diff --git a/composer.json b/composer.json index 92f8b28..e78319f 100644 --- a/composer.json +++ b/composer.json @@ -29,7 +29,7 @@ }, "extra": { "branch-alias": { - "dev-master": "6.0-dev" + "dev-master": "6.1-dev" } }, "minimum-stability": "dev", diff --git a/plate.php b/plate.php index 233b737..31d2d90 100644 --- a/plate.php +++ b/plate.php @@ -14,7 +14,7 @@ * Description: A theme support plugin for WordPlate. * Author: WordPlate * Author URI: https://wordplate.github.io/ - * Version: 6.0.0 + * Version: 6.0.1 * Plugin URI: https://github.com/wordplate/plate#readme */ diff --git a/src/login-logo.php b/src/login-logo.php index bb423f5..ae7878d 100644 --- a/src/login-logo.php +++ b/src/login-logo.php @@ -36,8 +36,3 @@ add_filter('login_headerurl', function () { return get_bloginfo('url'); }); - -// Set custom login error message. -add_filter('login_errors', function () { - return 'Whoops! Looks like you missed something there. Have another go.'; -});