• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修訂ba90f86bc0aee0a653f567e8596f511ce3017a93 (tree)
時間2021-12-04 20:38:33
作者umorigu <umorigu@gmai...>
Commiterumorigu

Log Message

fix filter_raw_query_string()

Change Summary

差異

--- a/lib/init.php
+++ b/lib/init.php
@@ -307,7 +307,7 @@ if ($arg_replaced !== $arg) {
307307 $_GET = array();
308308 $m = array();
309309 foreach (explode('&', $arg_replaced) as $kv) {
310- if (preg_match('/^([^=]+)(=(.+))?/', $kv, $matches)) {
310+ if (preg_match('/^([^=]+)(=(.+))?/', $kv, $m)) {
311311 $_GET[$m[1]] = is_null($m[3]) ? '' : $m[3];
312312 }
313313 }