Skip to content

Commit 9995464

Browse files
committed
Add 3.6.8 files
1 parent 736ca80 commit 9995464

File tree

18 files changed

+2029
-2020
lines changed

18 files changed

+2029
-2020
lines changed

assets/css/main.css.map

Lines changed: 0 additions & 7 deletions
This file was deleted.

backwpup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: WordPress Backup Plugin
66
* Author: Inpsyde GmbH
77
* Author URI: http://inpsyde.com
8-
* Version: 3.6.7
8+
* Version: 3.6.8
99
* Text Domain: backwpup
1010
* Domain Path: /languages/
1111
* Network: true

changelog.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
== Changelog ==
2+
= Version 3.6.8 =
3+
Release Date: Feb 25, 2019
4+
5+
* Fixed: Typos in settings job page
6+
* Fixed: Rest API admin note language doesn't change when changing user language
7+
28
= Version 3.6.7 =
3-
Release Date: Jan 23, 2019
9+
Release Date: Jan 22, 2019
410

511
* Fixed: More margin to dashboard footer to avoid save button unclickable
612
* Fixed: On folder sync destination folder is not created

inc/Notice/Promoter.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,11 @@ public function notice() {
104104
*/
105105
private function locale_code() {
106106

107+
$user = wp_get_current_user();
108+
if ( $user && isset($user->ID) ) {
109+
return substr( get_user_locale($user->ID), 0, 2 );
110+
}
111+
107112
return substr( get_locale(), 0, 2 );
108113
}
109114

inc/class-page-settings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ public function page() {
692692
</label>
693693
<p class="description">
694694
<?php esc_html_e(
695-
'Debug log has much more informations than normal logs. It is for support and should be handled carefully. For support is the best to use a not translated log file. Usage of not translated logs can reduce the PHP memory usage too.',
695+
'Debug log has much more information than normal logs. It is for support and should be handled carefully. For support is the best to use a not translated log file. Usage of not translated logs can reduce the PHP memory usage too.',
696696
'backwpup'
697697
); ?>
698698
</p>
@@ -829,7 +829,7 @@ public function page() {
829829
</label>
830830
<p class="description">
831831
<?php esc_html_e(
832-
'This do an empty output on job working. This can help in some situations or can brake the working. You must test it.',
832+
'This do an empty output on job working. This can help in some situations or can break the working. You must test it.',
833833
'backwpup'
834834
); ?>
835835
</p>

0 commit comments

Comments
 (0)