Skip to content

Commit

Permalink
Fix the default quote style
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Aug 25, 2021
1 parent 4f04c46 commit 47375a1
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -219,12 +219,12 @@ public static function substrHtml($strString, $intNumberOfChars)
* Decode all entities
*
* @param string $strString The string to decode
* @param integer $strQuoteStyle The quote style (defaults to ENT_COMPAT)
* @param integer $strQuoteStyle The quote style (defaults to ENT_QUOTES)
* @param string $strCharset An optional charset
*
* @return string The decoded string
*/
public static function decodeEntities($strString, $strQuoteStyle=ENT_COMPAT, $strCharset=null)
public static function decodeEntities($strString, $strQuoteStyle=ENT_QUOTES, $strCharset=null)
{
if ((string) $strString === '')
{
Expand Down

0 comments on commit 47375a1

Please sign in to comment.