$or

Returns the logical OR linkage of all given parameters.
Syntax
    $or{value_1}{value_2} ... {value_n}
DocumentationReturns the logical OR linkage of all parameters:

    Parameters:
      value_1 ... value_n, the values to be OR linked.
    Returns:
      1 if and only if any of tht parameters value equals 1; 0 otherwise.
    Note:
      the boolean value TRUE is represented in the SITEFORUM script language by the integer number 1 and
      FALSE by the number 0. The funktion $and will return 0 if any parameter is not equal to the integer 1.
      The expression $and{1}{b}{1} will be accepted and will return 0.
Examples
    $if{$or{$equals{5}{5}}{$equals{7}{6}}}
      {
      one or more comparison are equal
      }
        {
        all numbers are different
        }
    Result:
    first argument OR second argument of the expression is right:
    one or more comparison are equal
GroupBoolean
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters2
Maximum parameters <unlimited>