Changeset 7638
- Timestamp:
- 05/05/09 10:40:01 (4 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.5/amp_conf/htdocs/recordings/includes/display.php
r7595 r7638 87 87 <form class='bar' action='" . $_SESSION['ARI_ROOT'] . "' method='GET' name='search'> 88 88 <input type=hidden name=m value=" . $m . "> 89 <input type=text name=q size=40 value='" . htmlspecialchars($q ) . "' maxlength=256>89 <input type=text name=q size=40 value='" . htmlspecialchars($q,ENT_QUOTES) . "' maxlength=256> 90 90 " . $option_text . " 91 91 <input type=hidden name=start value=0> … … 133 133 } 134 134 elseif ($q != NULL) { 135 $left_text = "<small><small>" . _("Searched for") . " <u>" . $q. "</u></small></small>";135 $left_text = "<small><small>" . _("Searched for") . " <u>" . htmlspecialchars($q,ENT_QUOTES) . "</u></small></small>"; 136 136 } 137 137
