Skip to content

Commit

Permalink
13-06-2022
Browse files Browse the repository at this point in the history
### 1.8.7
[Fixed] Undefined Global Header
  • Loading branch information
smileBeda committed Jun 13, 2022
1 parent 1548e4a commit c23d2ee
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

## Changelog

### 1.8.7
[Fixed] Undefined Global Header

### 1.8.6
[Fixed] Missing Text Domains and some Comments for CPCS Review.

Expand Down
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: templates, archives, design
Requires at least: 4.9.0
Requires PHP: 7.0.0
Tested up to: 4.9.99
Stable tag: 1.8.6
Stable tag: 1.8.7
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -15,6 +15,9 @@ TukuToi Template Builder allows you to create any kind of Template for your Word

== Changelog ==

= 1.8.7 =
[Fixed] Undefined Global Header

= 1.8.6 =
[Fixed] Missing Text Domains and some Comments for CPCS Review.

Expand Down
2 changes: 1 addition & 1 deletion admin/partials/tkt-template-builder-admin-display.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
$global_head = isset( $template_options['global_header'] ) ? $template_options['global_header'] : '';
printf( '<option value="theme_header" ' . esc_attr( $theme_header ) . '>%s</option>', esc_html__( 'Theme Header', 'tkt-template-builder' ) );
printf( '<option value="no_header" ' . esc_attr( $no_header ) . '>%s</option>', esc_html__( 'No Header', 'tkt-template-builder' ) );
printf( '<option value="%s" ' . esc_attr( $global_header ) . '>%s</option>', esc_attr( $template_options['global_header'] ), esc_html__( 'Global Header', 'tkt-template-builder' ) );
printf( '<option value="%s" ' . esc_attr( $global_header ) . '>%s</option>', esc_attr( $global_head ), esc_html__( 'Global Header', 'tkt-template-builder' ) );
?>
</select>
</div>
Expand Down
4 changes: 2 additions & 2 deletions tkt-template-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Plugin Name: TukuToi Template Builder
* Plugin URI: https://www.tukutoi.com/
* Description: TukuToi Template Builder allows you to create any kind of Template for your WordPress or ClassicPress website, directly from within the Admin area, without editing PHP Files.
* Version: 1.8.6
* Version: 1.8.7
* Author: bedas
* Requires at least: 1.0.0
* Tested up to: 4.9.99
Expand All @@ -37,7 +37,7 @@
* Start at version 0.0.1 and use SemVer - https://semver.org
* Rename this for your plugin and update it as you release new versions.
*/
define( 'TKT_TEMPLATE_BUILDER_VERSION', '1.8.6' );
define( 'TKT_TEMPLATE_BUILDER_VERSION', '1.8.7' );

/**
* The code that runs during plugin activation.
Expand Down

0 comments on commit c23d2ee

Please sign in to comment.