Skip to content

Commit

Permalink
Updated function name to COM_createHTMLPrintableDocument
Browse files Browse the repository at this point in the history
  • Loading branch information
eSilverStrike committed Feb 15, 2022
1 parent 96049fe commit 01f5d67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/staticpages/functions.inc
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ function SP_printPage($page, $A)
}
*/

$display = COM_createHTMLPrintedDocument(
$display = COM_createHTMLPrintableDocument(
$A['sp_content'],
array(
'itemURL' => $sp_url,
Expand Down
2 changes: 1 addition & 1 deletion public_html/article.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ function extractExternalLinks($text) {
$itemModified = sprintf($LANG01[6], $article->displayElements('modified'));
}

$display = COM_createHTMLPrintedDocument(
$display = COM_createHTMLPrintableDocument(
$fulltext_no_br,
array(
'itemURL' => $articleUrl,
Expand Down
2 changes: 1 addition & 1 deletion public_html/lib-common.php
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,7 @@ function COM_renderMenu($header, $plugin_menu)
* Used mainly for comment info.
* @return string Formatted HTML document
*/
function COM_createHTMLPrintedDocument($content = '', $information = array())
function COM_createHTMLPrintableDocument($content = '', $information = array())
{
global $_CONF, $LANG01, $LANG_DIRECTION, $_SCRIPTS;

Expand Down

0 comments on commit 01f5d67

Please sign in to comment.