Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/app/webroot/news/forum/Themes/default/ |
Upload File : |
<?php /** * Simple Machines Forum (SMF) * * @package SMF * @author Simple Machines * @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0 */ function template_browse() { global $context, $settings, $options, $scripturl, $txt; echo ' <div id="manage_mail"> <div class="cat_bar"> <h3 class="catbg">', $txt['mailqueue_stats'], '</h3> </div> <div class="windowbg"> <span class="topslice"><span></span></span> <div class="content"> <dl class="settings"> <dt><strong>', $txt['mailqueue_size'], '</strong></dt> <dd>', $context['mail_queue_size'], '</dd> <dt><strong>', $txt['mailqueue_oldest'], '</strong></dt> <dd>', $context['oldest_mail'], '</dd> </dl> </div> <span class="botslice"><span></span></span> </div>'; template_show_list('mail_queue'); echo ' </div> <br class="clear" />'; } ?>