Skip to content

Commit

Permalink
Merge pull request #85 from a-roussos/missing_CSS_class
Browse files Browse the repository at this point in the history
Fix typo in strlen call
  • Loading branch information
tematres authored Aug 24, 2023
2 parents ecea5ff + e1c35c0 commit 90c472c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/include/fun.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -1949,7 +1949,7 @@ function HTMLduplicatedTermsAlert($arrayDuplicatedTerms)
function HTMLlinkTerm($arrayTerm, $arg = array())
{

$class=(strlen(array2value("style", $arg)>0)) ? $arg["style"] : '' ;
$class=(strlen(array2value("style", $arg))>0) ? $arg["style"] : '' ;

$class.=(array2value("isMetaTerm",$arrayTerm)==1) ? ' metaTerm' : '' ;

Expand Down

0 comments on commit 90c472c

Please sign in to comment.