Skip to content

Commit 0f80a1a

Browse files
committed
Merge branch 'hotfix/0.21.14'
2 parents 69a9189 + cd7fd18 commit 0f80a1a

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
## Changelog ##
33

44

5+
### 0.21.14 ###
6+
7+
Fix headers tags at results' page template.
8+
9+
Bug is ~4 years old and was introduced in version 0.3. Thanks for reporting goes to Erik Thor.
10+
11+
512
### 0.21.13 ###
613

714
Add answer's attribute for CSS styling.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
**Tested up to:** 4.9
1010

11-
**Stable tag:** 0.21.13
11+
**Stable tag:** 0.21.14
1212

1313
**License:** GPLv3
1414

src/Template/Test/Passer/get-results.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<?php foreach ($results as $i => $result): /* @var $result WpTesting_Model_Result */ ?>
2020

21-
<h3 class="<?php echo $result->getCssClass($i) ?> title"><?php echo $result->getTitle() ?></h4>
21+
<h3 class="<?php echo $result->getCssClass($i) ?> title"><?php echo $result->getTitle() ?></h3>
2222

2323
<div class="<?php echo $result->getCssClass($i) ?> description"><?php echo $renderer->renderWithMoreSplitted($renderer->renderTextAsHtml($result->getDescription())) ?></div>
2424

@@ -36,7 +36,7 @@
3636

3737
<?php foreach ($scales as $i => $scale): /* @var $scale WpTesting_Model_Scale */ ?>
3838

39-
<h3 class="<?php echo $scale->getCssClass($i) ?> title"><?php echo $scale->getTitle() ?></h4>
39+
<h3 class="<?php echo $scale->getCssClass($i) ?> title"><?php echo $scale->getTitle() ?></h3>
4040

4141
<div class="<?php echo $scale->getCssClass($i) ?> scores">
4242
<?php echo $scale->formatValueAsOutOf() ?>

wp-testing.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Wp-testing
44
* Plugin URI: http://wordpress.org/extend/plugins/wp-testing/
55
* Description: Helps to create psychological tests.
6-
* Version: 0.21.13
6+
* Version: 0.21.14
77
* Author: Alexander Ustimenko
88
* Author URI: http://ustimen.co
99
* License: GPL3

0 commit comments

Comments
 (0)