2009-07-07 05:42:34 -07:00
|
|
|
<?php
|
2009-07-21 07:36:12 +01:00
|
|
|
/**
|
|
|
|
* A customised version of the Setup theme
|
|
|
|
*/
|
2009-07-07 05:42:34 -07:00
|
|
|
class CustomSetupTheme extends SetupTheme {
|
|
|
|
protected function sb_to_html(SetupBlock $block) {
|
2009-08-04 17:45:09 +01:00
|
|
|
return $this->rr(parent::sb_to_html($block));
|
2009-07-07 05:42:34 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|