فهرست منبع

Revert wrong change on array_map

But would still be better with explicit UTF-8
Alexandre Alapetite 12 سال پیش
والد
کامیت
da2e4e09d9
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      lib/minz/Request.php

+ 1 - 1
lib/minz/Request.php

@@ -35,7 +35,7 @@ class Request {
 			if(is_object($p) || $specialchars) {
 				return $p;
 			} elseif(is_array($p)) {
-				return array_map('htmlspecialchars', $p, ENT_NOQUOTES, 'UTF-8');
+				return array_map('htmlspecialchars', $p);	//TODO: Should use explicit UTF-8
 			} else {
 				return htmlspecialchars($p, ENT_NOQUOTES, 'UTF-8');
 			}