Browse Source

Fix UTF-8 encoding on unrated page

pull/2/head
Chris Smith 13 years ago
parent
commit
3e39f5dcff
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      unrated.php

+ 1
- 1
unrated.php View File

@@ -53,7 +53,7 @@
53 53
 ?>
54 54
   </p>
55 55
   <div class="quotebody">
56
-   <?PHP echo nl2br(htmlentities($row['quote_quote'])); ?>
56
+   <?PHP echo nl2br(htmlentities($row['quote_quote'], ENT_QUOTES, 'UTF-8')); ?>
57 57
   </div>
58 58
  </div>
59 59
 <?PHP

Loading…
Cancel
Save