From 05e7a9c40e675cd8e2a58c4ed87bc7187722f427 Mon Sep 17 00:00:00 2001 From: savvasha Date: Sun, 7 Nov 2021 10:23:07 +0200 Subject: [PATCH] Fix: Plus sign was not shown correctly after escaped function --- includes/sp-core-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/sp-core-functions.php b/includes/sp-core-functions.php index 8d29cf47..af12732b 100644 --- a/includes/sp-core-functions.php +++ b/includes/sp-core-functions.php @@ -537,7 +537,7 @@ if ( !function_exists( 'sp_get_post_equation' ) ) { if ( $equation ): $equation = str_replace( array( '/', '(', ')', '+', '-', '*', '_', '$' ), - array( '÷', '(', ')', '+', '−', '×', '@', '' ), + array( '÷', '(', ')', '+', '−', '×', '@', '' ), trim( $equation ) ); return '' . implode( ' ', explode( ' ', $equation ) ) . '';