We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a43923 commit c582c61Copy full SHA for c582c61
php-error-log-viewer.php
@@ -170,7 +170,7 @@ public function vscode_link_filter( $matches ) {
170
* @return void
171
*/
172
public function replace_callback( $arr ) {
173
- $err_id = crc32( $arr[2] ); // create a unique identifier for the error message.
+ $err_id = crc32( trim( $arr[2] ) ); // create a unique identifier for the error message.
174
if ( ! isset( $this->content[ $err_id ] ) ) { // we have a new error.
175
$this->content[ $err_id ] = array();
176
$this->content[ $err_id ]['id'] = $err_id; // err_id.
0 commit comments