', ''); } /** * tarski_output_errorinclude() - Outputs $errorPageInclude variable from constants.php. * * @since 1.5 * @param string $input * @global string $errorPageInclude * @return string $output equal to $errorPageInclude or $input */ function tarski_output_errorinclude($input) { global $errorPageInclude; if($errorPageInclude) { $output = $errorPageInclude; } else { $output = $input; } return $output; } ?>