소스 검색

feat: template decodeHtmlEntities filter

igb 4 달 전
부모
커밋
30e2e47a1b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Services/LiquidFilters/Filters.php

+ 1 - 1
app/Services/LiquidFilters/Filters.php

@@ -54,7 +54,7 @@ class Filters
         return '<img src="' . htmlspecialchars($imageUrl, ENT_QUOTES) . '" alt="' . htmlspecialchars($alt, ENT_QUOTES) . '"' . $attrString . '>';
     }
 
-    public static function decode_html_entities($input) {
+    public static function decode_html_entities($input) {
         return html_entity_decode($input, ENT_QUOTES, 'UTF-8');
     }