コード例 #1
0
ファイル: MY_url.php プロジェクト: HarriLu/gallery3
 /**
  * Just like url::merge except that it escapes any XSS in the path.
  */
 static function merge(array $arguments)
 {
     return htmlspecialchars(parent::merge($arguments));
 }
コード例 #2
0
ファイル: MY_url.php プロジェクト: joericochuyt/gallery3
 /**
  * Just like url::merge except that it escapes any XSS in the path.
  */
 static function merge($params)
 {
     return htmlspecialchars(parent::merge($params));
 }