diff options
author | xgizzmo <xgizzmo@ampache> | 2006-01-11 02:59:17 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2006-01-11 02:59:17 +0000 |
commit | 603f145952f39164b961ac94a46b8a459e7adac0 (patch) | |
tree | 90fb10a0f1a1ea8396af8a41e629b1e63bac30d2 /templates/tool_box.inc | |
parent | 67d76f09c28d0c6abae6d966f4cc00a5428bdc74 (diff) | |
download | ampache-603f145952f39164b961ac94a46b8a459e7adac0.tar.gz ampache-603f145952f39164b961ac94a46b8a459e7adac0.tar.bz2 ampache-603f145952f39164b961ac94a46b8a459e7adac0.zip |
More code clean up this should about cover /templates
Diffstat (limited to 'templates/tool_box.inc')
-rw-r--r-- | templates/tool_box.inc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/templates/tool_box.inc b/templates/tool_box.inc index 2f0f5fe6..02f6dd13 100644 --- a/templates/tool_box.inc +++ b/templates/tool_box.inc @@ -28,16 +28,16 @@ ?> <table class="border" cellspacing="1" cellpadding="3" > - <tr class="table-header" align="center"> - <th><?php echo $title; ?></th> - </tr> - <tr> - <td class="even"> - <?php - foreach (array_keys($items) as $item) { - print("\t\t\t>> <a href=\"$items[$item]\"> $item</a><br />\n"); - } - ?> - </td> - </tr> +<tr class="table-header" align="center"> + <th><?php echo $title; ?></th> +</tr> +<tr> + <td class="even"> + <?php + foreach (array_keys($items) as $item) { + print("\t\t\t>> <a href=\"$items[$item]\"> $item</a><br />\n"); + } + ?> + </td> +</tr> </table> |