This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/themes/default/setup.theme.php
2009-08-04 17:45:09 +01:00

10 lines
209 B
PHP

<?php
/**
* A customised version of the Setup theme
*/
class CustomSetupTheme extends SetupTheme {
protected function sb_to_html(SetupBlock $block) {
return $this->rr(parent::sb_to_html($block));
}
}
?>