Ver código fonte

Query does not need to be encoded (htmlspecialchars)

poesty 1 ano atrás
pai
commit
bae954b968
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      search.php

+ 2 - 2
search.php

@@ -7,8 +7,8 @@
 
 <title>
 <?php
-  $query = htmlspecialchars(trim($_REQUEST["q"]));
-  echo $query;
+  $query = $_REQUEST["q"];
+  echo htmlspecialchars(trim($query));
 ?> - LibreX</title>
 </head>
     <body>