diff --git a/src/models/Review.php b/src/models/Review.php index 3329359..7b3c6f2 100644 --- a/src/models/Review.php +++ b/src/models/Review.php @@ -36,7 +36,7 @@ public function __construct( $this->user_id = $user_id; $this->product_id = $product_id; $this->parent_review_id = $parent_review_id; - $this->text = htmlspecialchars_decode(strip_tags($text)); + $this->text = $text; $this->rating = $rating; $this->date = $date; }