summaryrefslogtreecommitdiff
path: root/it_html.class
diff options
context:
space:
mode:
authorChristian Schneider2019-09-02 17:14:43 +0200
committerChristian Schneider2019-09-02 17:14:43 +0200
commit2b13737e9299317c865f72f4a276ea0b733c4f5f (patch)
treeb800cc0e889d976ba0957e168df45622aee24ee2 /it_html.class
parentb422951038a66713c18ec4d24ce71a13dd0756a6 (diff)
downloaditools-2b13737e9299317c865f72f4a276ea0b733c4f5f.tar.gz
itools-2b13737e9299317c865f72f4a276ea0b733c4f5f.tar.bz2
itools-2b13737e9299317c865f72f4a276ea0b733c4f5f.zip
Make itools a bit stricter, new PHP versions start to enforce more declarations
Diffstat (limited to 'it_html.class')
-rw-r--r--it_html.class4
1 files changed, 2 insertions, 2 deletions
diff --git a/it_html.class b/it_html.class
index 390e8ae..04d6f2b 100644
--- a/it_html.class
+++ b/it_html.class
@@ -392,7 +392,7 @@ function select($tags, $options, $selected = null)
/**
* Outputs string as correctly quoted HTML comment
*/
-function comment($string)
+static function comment($string)
{
return "<!-- " . it::replace(array('--' => "&#45;&#45;"), $string) . " -->";
}
@@ -453,7 +453,7 @@ static function sanitize($html)
/**
* Decode all entities to encoding set for it_html
*/
-function entity_decode($string)
+static function entity_decode($string)
{
$charset = $GLOBALS['it_html']->p['charset'];
$string = preg_replace('/&#(8217|65533);/', "'", html_entity_decode($string, ENT_COMPAT, $charset));