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/warm/setup.theme.php

11 lines
210 B
PHP
Raw Normal View History

2009-07-23 01:32:45 +00:00
<?php
/**
* A customised version of the Setup theme
*/
class CustomSetupTheme extends SetupTheme {
protected function sb_to_html(SetupBlock $block) {
2009-08-04 16:45:09 +00:00
return $this->box(parent::sb_to_html($block));
2009-07-23 01:32:45 +00:00
}
}
?>