An error has occured in $app_name:

$message

$detail

For support, please visit the EnterpriseDB forums.

EOT; echo $text; exit(); } // Return a clean value for display, or a no-break space to maintain box size etc. function www_clean($text) { if ($text == "") return " "; else return htmlspecialchars($text); } // Truncate a value for display function truncate_value($text) { if (strlen($text) > $GLOBALS['config_max_field_size']) return substr($text, 0, $GLOBALS['config_max_field_size']) . " [value truncated]"; else return $text; } // Truncate a value for use on a menu function truncate_title($text) { if (strlen($text) > 30) return substr($text, 0, 30) . "..."; else return $text; } ?>