1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-30 17:50:12 +02:00

Case cleanup toHtml() should be toHTML()

This commit is contained in:
Cameron
2019-02-26 12:22:36 -08:00
parent beb1734681
commit 1dbc90143f
64 changed files with 147 additions and 139 deletions

View File

@@ -72,7 +72,7 @@ class download_search extends e_search // include plugin-folder in the name.
$datestamp = $tp->toDate($row['download_datestamp'], "long");
$res['link'] = e107::url('download', 'item', $row);
$res['pre_title'] = $tp->toHtml($row['download_category_name'],false,'TITLE_PLAIN')." | ";
$res['pre_title'] = $tp->toHTML($row['download_category_name'],false,'TITLE_PLAIN')." | ";
$res['title'] = $row['download_name'];
$res['pre_summary'] = "<div class='smalltext'><a href='download.php'>".LAN_197."</a> -> <a href='download.php?list.".$row['download_category_id']."'>".$row['download_category_name']."</a></div>";
$res['summary'] = $row['download_description'];

View File

@@ -65,7 +65,7 @@ class download_sitelink // include plugin-folder in the name.
}
$sublinks[] = array(
'link_name' => $tp->toHtml($row['download_category_name'],'','TITLE'),
'link_name' => $tp->toHTML($row['download_category_name'],'','TITLE'),
'link_url' => e107::url('download', 'category', $row),
'link_description' => '',
'link_button' => $row['download_category_icon'],

View File

@@ -370,7 +370,7 @@ class download
$tp = e107::getParser();
$metaImage = $tp->thumbUrl($row['download_image'], array('w'=>500), null, true);
$metaDescription = $tp->toHtml($row['download_description'],true);
$metaDescription = $tp->toHTML($row['download_description'],true);
e107::meta('description', $tp->toText($metaDescription));
e107::meta('keywords', $row['download_keywords']);