diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-04-20 21:28:15 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-04-20 21:28:15 +0000 |
commit | e81096f5bc509b650aba39ce1868efa066aa8152 (patch) | |
tree | 1027fbb5d3018fe21eb9e7f5b3a6b932681bdda0 /includes | |
parent | a6233dfe2065e011b38adeb9480e0b741fe48f84 (diff) | |
download | brdo-e81096f5bc509b650aba39ce1868efa066aa8152.tar.gz brdo-e81096f5bc509b650aba39ce1868efa066aa8152.tar.bz2 |
- Patch #372471 by JamesAn et al: killed theme_box().
Diffstat (limited to 'includes')
-rw-r--r-- | includes/theme.inc | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 6665ab861..b575734b1 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1474,21 +1474,6 @@ function theme_tablesort_indicator($style) { } /** - * Return a themed box. - * - * @param $title - * The subject of the box. - * @param $content - * The content of the box. - * @return - * A string containing the box output. - */ -function theme_box($title, $content) { - $output = '<h2 class="title">' . $title . '</h2><div>' . $content . '</div>'; - return $output; -} - -/** * Return a themed marker, useful for marking new or updated * content. * |