Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@

## Changelog ##

### 0.6.3 ###
* Fixed notice in widget helper

### 0.6.1 ###
* Fixed non existing product in order reminder

Expand Down
2 changes: 1 addition & 1 deletion includes/class-lipscore-widget-helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function richsnippet_product_attrs( $productData ) {
protected function to_string( $attrs ) {
$strAttrs = array();
foreach ($attrs as $attr => $value) {
$value = htmlspecialchars( $value );
$value = htmlspecialchars( (string) $value );
$strAttrs[] = "$attr=\"$value\"";
}
return implode( ' ', $strAttrs );
Expand Down
2 changes: 1 addition & 1 deletion lipscore.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Plugin Name: Lipscore Ratings and Reviews
* Plugin URI: http://lipscore.com/
* Description: Collecting reviews is difficult. Let the most efficient and flexible plugin in the world do it for you.
* Version: 0.6.2
* Version: 0.6.3
* Author: Lipscore
* Author URI: http://lipscore.com/
* Donate link: http://lipscore.com/
Expand Down