Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Convert both double and single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaus committed Mar 10, 2024
1 parent 58438f7 commit e2f8fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ruhrpottmetaller/Data/LowLevel/String/RmString.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function hasSpecialFirstChar(): bool

public function filter(): RmString
{
$this->value = htmlentities($this->value);
$this->value = htmlentities($this->value, ENT_QUOTES);
return $this;
}
}

0 comments on commit e2f8fbc

Please sign in to comment.