Removed the HEREDOC syntax that caused errors in PHP versions earlier than 5.3.
This commit is contained in:
@@ -61,12 +61,7 @@ class CodexTemplate extends QuickTemplate
|
|||||||
* @var string
|
* @var string
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
private $_sideboxf = <<<________EOD
|
private $_sideboxf = '<h3>%s</h3><ul class="submenu">%s</ul>';
|
||||||
<h3>%s</h3>
|
|
||||||
<ul class="submenu">
|
|
||||||
%s
|
|
||||||
</ul>
|
|
||||||
________EOD;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sidebox List Item printf Format
|
* Sidebox List Item printf Format
|
||||||
@@ -74,7 +69,7 @@ ________EOD;
|
|||||||
* @var string
|
* @var string
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
private $_lif = "\t<li id=\"%s\"%s>%s</li>\n";
|
private $_lif = 't<li id="%s"%s>%s</li>'."\n";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sidebox AnchorLink printf Format
|
* Sidebox AnchorLink printf Format
|
||||||
|
Reference in New Issue
Block a user