From 4cf520e2dc270401b365194f29e4abf5abcdbf7c Mon Sep 17 00:00:00 2001 From: David Date: Thu, 8 Mar 2012 15:28:04 -0600 Subject: [PATCH] Removed the HEREDOC syntax that caused errors in PHP versions earlier than 5.3. --- Codex.php | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/Codex.php b/Codex.php index bee1779..fb0766c 100644 --- a/Codex.php +++ b/Codex.php @@ -61,12 +61,7 @@ class CodexTemplate extends QuickTemplate * @var string * @access private */ - private $_sideboxf = <<<________EOD -

%s

- -________EOD; + private $_sideboxf = '

%s

'; /** * Sidebox List Item printf Format @@ -74,7 +69,7 @@ ________EOD; * @var string * @access private */ - private $_lif = "\t
  • %s
  • \n"; + private $_lif = 't
  • %s
  • '."\n"; /** * Sidebox AnchorLink printf Format