Nothing fancy, just to show not only the admin's on your board in the admin center (I guess you should really know who are the admin's when you have your own board

), but also show the Global Moderators in the admin center :
I know, it is just copy-pasting the excisting code, and just changing it a bit, but maybe there are people who want this.
I made this for my v1.5.1Rc38, but other versions shouldn't be too difficult to "make"
Here goes :
Find in Admin.php :
// and load the administrators
$request = mysql_query("SELECT memberName, realName FROM {$db_prefix}members WHERE memberGroup='Administrator'") or database_error(__FILE__, __LINE__);
$admins = array();
while ($row = mysql_fetch_assoc($request))
{
$euser = urlencode($row['memberName']);
$admins[] = "<a href=\"$scripturl?action=viewprofile;user=$euser\">$row[realName]</a>";
}
$administrators = implode(', ', $admins);
and ADD AFTER :
// and load the Global Moderators
$request = mysql_query("SELECT memberName, realName FROM {$db_prefix}members WHERE memberGroup='Global Moderator'") or database_error(__FILE__, __LINE__);
$glomods = array();
while ($row = mysql_fetch_assoc($request))
{
$euser = urlencode($row['memberName']);
$globmods[] = "<a href=\"$scripturl?action=viewprofile;user=$euser\">$row[realName]</a>";
}
$globalmoderators = implode(', ', $globmods);
also find :
<font size="2"><b>' . $txt[684] . ':</b></font> <font size="1">' . $administrators . '</font><br /><br />
and add after :
<font size="2"><b>Global Moderators:</b></font> <font size="1">' . $globalmoderators . '</font><br /><br />
That's all folks
See the example :