diff options
author | Loui Chang <louipc.ist@gmail.com> | 2010-11-03 01:03:45 -0400 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2010-11-03 01:03:45 -0400 |
commit | dbb8bb783f2f22b68ad2d65f020390428e77c479 (patch) | |
tree | d19fa0a825fbb2b382a3f8fb49373229a20f5fa5 /web/template/tu_list.php | |
parent | dc8265a96296720e0c42a1d89400c8dde92e7106 (diff) |
TU: Use htmlspecialchars instead of htmlentities.
Let the utf8 shine through.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/template/tu_list.php')
-rw-r--r-- | web/template/tu_list.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/web/template/tu_list.php b/web/template/tu_list.php index f734cec..f64d383 100644 --- a/web/template/tu_list.php +++ b/web/template/tu_list.php @@ -20,11 +20,7 @@ <tr> <td class='<?php print $c ?>'><span class='f4'><span class='blue'> <?php - if (strlen($row["Agenda"]) >= $prev_Len) { - $row["Agenda"] = htmlentities(substr($row["Agenda"], 0, $prev_Len)) . "..."; - } else { - $row["Agenda"] = htmlentities($row["Agenda"]); - } + $row["Agenda"] = htmlspecialchars(substr($row["Agenda"], 0, $prev_Len)); ?> <a href='tu.php?id=<?php print $row['ID'] ?>'><?php print $row["Agenda"] ?></a></span></span> </td> |