Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2902212
D25164.1737297553.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
420 B
Referenced Files
None
Subscribers
None
D25164.1737297553.diff
View Options
diff --git a/src/utils/utils.php b/src/utils/utils.php
--- a/src/utils/utils.php
+++ b/src/utils/utils.php
@@ -1888,7 +1888,10 @@
* @return string URI encoded string, except for '/'.
*/
function phutil_escape_uri($string) {
- return str_replace('%2F', '/', rawurlencode($string));
+ if (phutil_nonempty_string($string)) {
+ return str_replace('%2F', '/', rawurlencode($string));
+ }
+ return null;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Jan 19, 14:39 (7 h, 19 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1133862
Default Alt Text
D25164.1737297553.diff (420 B)
Attached To
Mode
D25164: Fix PHP 8.1 "rawurlencode(null)" exception which blocks rendering a project page
Attached
Detach File
Event Timeline
Log In to Comment