Skip to content

Commit 9cb0fba

Browse files
committed
updated to only check not null
1 parent 8f015f8 commit 9cb0fba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

system/HTTP/URI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public static function createURIString(
181181
$uri .= '?' . $query;
182182
}
183183

184-
if ($fragment !== null && $fragment !== '') {
184+
if ($fragment !== null) {
185185
$uri .= '#' . $fragment;
186186
}
187187

0 commit comments

Comments
 (0)