From: Christian Weiske Date: Wed, 19 Sep 2012 17:11:59 +0000 (+0200) Subject: use replace html entity with numeric xml entity X-Git-Tag: v0.3.0~32^2~4^2 X-Git-Url: https://git.cweiske.de/phorkie.git/commitdiff_plain/13889267c83c2f7a747120a91352bae4d605aa3e use replace html entity with numeric xml entity --- diff --git a/src/phorkie/Renderer/Geshi.php b/src/phorkie/Renderer/Geshi.php index 2010ead..21d36c2 100644 --- a/src/phorkie/Renderer/Geshi.php +++ b/src/phorkie/Renderer/Geshi.php @@ -28,7 +28,7 @@ class Renderer_Geshi } return '
' - . $geshi->parse_code() + . str_replace(' ', ' ', $geshi->parse_code()) . '
'; }