summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-12 09:23:40 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-12 09:23:40 +0000
commitf96d0a9ee9874144a19c120de8d13bf7a3d1e3e6 (patch)
treeef27101a76024861da8411efe645a4fab391dd68 /modules
parent417e2fc2bb64bd869886a1549d0e7dc860d1cbcf (diff)
downloadbrdo-f96d0a9ee9874144a19c120de8d13bf7a3d1e3e6.tar.gz
brdo-f96d0a9ee9874144a19c120de8d13bf7a3d1e3e6.tar.bz2
- Patch #372471: box.tpl.php is dead.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/box.tpl.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/system/box.tpl.php b/modules/system/box.tpl.php
deleted file mode 100644
index b69a21f9f..000000000
--- a/modules/system/box.tpl.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-// $Id$
-
-/**
- * @file
- * Default theme implementation to display a box.
- *
- * Available variables:
- * - $title: Box title.
- * - $content: Box content.
- *
- * @see template_preprocess()
- */
-?>
-<div class="box">
-
-<?php if ($title): ?>
- <h2><?php print $title ?></h2>
-<?php endif; ?>
-
- <div class="content"><?php print $content ?></div>
-</div>