diff -r 2303ef648290 -r 88d7a7c2743c plugins/SpecialAdmin.php
--- a/plugins/SpecialAdmin.php Sun Oct 21 02:33:25 2007 -0400
+++ b/plugins/SpecialAdmin.php Sun Oct 21 21:26:11 2007 -0400
@@ -3194,7 +3194,10 @@
$c = ($template->fetch_block($row['block_content'])) ? $template->fetch_block($row['block_content']) : 'Can\'t find plugin block';
break;
}
- $t = '' . $template->tplWikiFormat($row['block_name']) . '';
+ $block_name = $template->tplWikiFormat($row['block_name']);
+ if ( empty($block_name) )
+ $block_name = '<Unnamed>';
+ $t = '' . $block_name . '';
if($row['item_enabled'] == 0) $t .= ' (disabled)';
else $t .= ' (disabled)';
$side = ( $row['sidebar_id'] == SIDEBAR_LEFT ) ? SIDEBAR_RIGHT : SIDEBAR_LEFT;