Ticket #1232: 1232.patch

File 1232.patch, 1.6 KB (added by Nightgunner5, 2 years ago)

Patch for stats.php template

  • bb-templates/kakumei/stats.php

     
    11<?php bb_get_header(); ?> 
    22 
    3 <div class="bbcrumb"><a href="<?php bb_uri(); ?>"><?php bb_option('name'); ?></a> &raquo; <?php _e('Statistics'); ?></div> 
     3<div class="bbcrumb"><a href="<?php bb_uri(); ?>"><?php bb_option( 'name' ); ?></a> &raquo; <?php _e( 'Statistics' ); ?></div> 
    44 
    5 <dl role="main"> 
    6         <dt><?php _e('Registered Users'); ?></dt> 
     5<dl role="main" class="left"> 
     6        <dt><?php _e( 'Registered Users' ); ?></dt> 
    77        <dd><strong><?php total_users(); ?></strong></dd> 
    8         <dt><?php _e('Posts'); ?></dt> 
     8        <dt><?php _e( 'Posts' ); ?></dt> 
    99        <dd><strong><?php total_posts(); ?></strong></dd> 
     10<?php do_action( 'bb_stats_left' ); ?> 
    1011</dl> 
    1112 
     13<div class="right"> 
    1214<?php if ($popular) : ?> 
    13 <h3><?php _e('Most Popular Topics'); ?></h3> 
    14 <ol> 
    15 <?php foreach ($popular as $topic) : ?> 
    16 <li><?php bb_topic_labels(); ?> <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> &#8212; <?php topic_posts(); ?> posts</li> 
     15        <h3><?php _e( 'Most Popular Topics' ); ?></h3> 
     16        <ol> 
     17<?php foreach ( $popular as $topic ) : ?> 
     18                <li><?php bb_topic_labels(); ?> <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> &#8212; <?php printf( _n( '%s post', '%s posts', get_topic_posts() ), bb_number_format_i18n( get_topic_posts() ) ); ?></li> 
    1719<?php endforeach; ?> 
     20        </ol> 
     21<?php endif; ?> 
    1822 
    19 <?php endif; ?> 
    20 </ol> 
     23<?php do_action( 'bb_stats_right' ); ?> 
     24</div> 
     25 
    2126<?php bb_get_footer(); ?>