Skip to content

Commit 897e561

Browse files
committed
update
1 parent df05515 commit 897e561

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static function getRoutingTabPane($requestId, $request)
7878
$html = array();
7979
$html[] = '<div class="tab-pane active" id="debug-request-' . $requestId . '-routing">';
8080
if ($request['router']['method'] == 'GET' && count($request['router']['parameters']['get'])) {
81-
$html[] = '<div class="alert alert-warning"><strong>Warning:</strong> GET parameters should not be used</div>';
81+
$html[] = '<div class="alert alert-info"><strong>Info:</strong> It is better to use path parameters than GET parameters</div>';
8282
}
8383
if ($request['router']['method'] == 'POST' && !$request['router']['csrfOk']) {
8484
$html[] = '<div class="alert alert-danger"><strong>Error:</strong> CSRF token validation failed</div>';

0 commit comments

Comments
 (0)