diff --git a/e107_handlers/e_parse_class.php b/e107_handlers/e_parse_class.php index 3b92c6319..82de5a3fa 100644 --- a/e107_handlers/e_parse_class.php +++ b/e107_handlers/e_parse_class.php @@ -2688,7 +2688,7 @@ class e_parser /** * Parse xxxxx.glyph file to bootstrap glyph format. * @param string $text - * @param array + * @param array of $parms */ public function toGlyph($text, $space=" ") { @@ -2771,7 +2771,7 @@ class e_parser $ext = pathinfo($icon, PATHINFO_EXTENSION); - if(!$ext || $ext == '.glyph') // Bootstrap or Font-Awesome. + if(!$ext || $ext == 'glyph') // Bootstrap or Font-Awesome. { return $this->toGlyph($icon,$parm); }