WackoFormatter 4 Mantis Bugtracker
- Download WackoFormatter from http://wackowiki.com/projects/wackoformatter
- Unpack WackoFormatter.php to WackoFormatter folder in the root of Mantis directory.
- Download WackoFormatter4Mantis.php and place to the same folder as WackoFormatter.php
- Change core/string_api.php, function string_display_links to
<?php
function string_display_links( $p_string ) {
require_once("WackoFormatter/WackoFormatter4Mantis.php");
$parser = &new WackoFormatter();
$Config = &new WackoFormatterConfigMantis();
$parser->SetObject($Config);
$p_string = $parser->Format($p_string);
$p_string = string_process_bug_link( $p_string );
$p_string = string_process_cvs_link( $p_string );
return $p_string;
}
?>
- Add contents of wacko.css (belongs to WackoFormatter) to css/default.css (belongs to Mantis).
- Enjoy!