diff --git a/ext/setup/theme.php b/ext/setup/theme.php index e8b304c8..64b0903c 100644 --- a/ext/setup/theme.php +++ b/ext/setup/theme.php @@ -87,7 +87,17 @@ class SetupTheme extends Themelet { } protected function sb_to_html(SetupBlock $block) { - return "
{$block->header}
{$block->body}
\n"; + $h = $block->header; + $b = $block->body; + $i = preg_replace('/[^a-zA-Z0-9]/', '_', $h) . "-setup"; + $html = " +
+ $h +
$b
+
+ + "; + return $html; } } ?> diff --git a/themes/default/setup.theme.php b/themes/default/setup.theme.php deleted file mode 100644 index ffd82027..00000000 --- a/themes/default/setup.theme.php +++ /dev/null @@ -1,38 +0,0 @@ -header; - $b = $block->body; - $i = preg_replace('/[^a-zA-Z0-9]/', '_', $h) . "-setup"; - $html = " - -
- $h -
$b
-
- - "; - - return $html; - } -} -?>