File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -113,16 +113,16 @@ public function createHttpRequest()
113113 $ script = '/ ' ;
114114 }
115115
116- $ path = strtolower ($ url ->getPath ()) . '/ ' ;
117- $ script = strtolower ($ script ) . '/ ' ;
118- $ max = min (strlen ($ path ), strlen ($ script ));
119- for ($ i = 0 ; $ i < $ max ; $ i ++) {
120- if ($ path [$ i ] !== $ script [$ i ]) {
116+ $ path = $ url ->getPath ();
117+ $ max = min (strlen ($ path ), strlen ($ script )) - 1 ;
118+ for ($ i = 0 , $ j = 0 ; $ i <= $ max ; $ i ++) {
119+ if ($ path [$ i ] !== $ script [$ i ] && strcasecmp ($ path [$ i ], $ script [$ i ])) {
121120 break ;
122- } elseif ($ path [$ i ] === '/ ' ) {
123- $ url -> setScriptPath ( substr ( $ url -> getPath (), 0 , $ i + 1 )) ;
121+ } elseif ($ path [$ i ] === '/ ' || $ i === $ max ) {
122+ $ j = $ i ;
124123 }
125124 }
125+ $ url ->setScriptPath (substr ($ path , 0 , $ j + 1 ));
126126
127127 // GET, POST, COOKIE
128128 $ useFilter = (!in_array (ini_get ('filter.default ' ), array ('' , 'unsafe_raw ' )) || ini_get ('filter.default_flags ' ));
You can’t perform that action at this time.
0 commit comments