Changeset 6409

Show
Ignore:
Timestamp:
09/23/06 04:57:31 (2 years ago)
Author:
GamerZ
Message:

Change all <b> to <strong>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • wp-stats/trunk/readme.html

    r6318 r6409  
    218218                              <ul> 
    219219                                    <li>NEW: Allow You To Choose Which Type Of Stats To Display Under Options -> Stats</li> 
    220                                     <li>NEW: Stats Is Now Embedded Into A Page, And Hence No More Integrating Of Stats Page</li> 
     220                                    <li>NEW: Stats Is Now Embedded Into A Page, And Hence No More Integrating Of Stats Page (Removed wp-stats.php)</li> 
    221221                                    <li>NEW: Added Widget Title Option To WP-Stats Widget</li> 
    222222                              </ul> 
  • wp-stats/trunk/stats/stats-options.php

    r6318 r6409  
    7979                              <th align="left" width="30%"><?php _e('Type Of Stats To Display'); ?></th> 
    8080                              <td align="left"> 
    81                                     <p><b>General Stats</b></p> 
     81                                    <p><strong>General Stats</strong></p> 
    8282                                    <input type="checkbox" name="stats_display[]" value="total_stats"<?php checked(1, $stats_display['total_stats']); ?> />&nbsp;&nbsp;Total<br /> 
    83                                     <p><b>Plugin Stats</b></p> 
     83                                    <p><strong>Plugin Stats</strong></p> 
    8484                                    <?php  
    8585                                          if(function_exists('wp_email')) { 
     
    109109                                          } 
    110110                                    ?> 
    111                                     <p><b>Top <?php echo get_settings('stats_mostlimit'); ?> Stats</b></p> 
     111                                    <p><strong>Top <?php echo get_settings('stats_mostlimit'); ?> Stats</strong></p> 
    112112                                    <input type="checkbox" name="stats_display[]" value="recent_posts"<?php checked(1, $stats_display['recent_posts']); ?> />&nbsp;&nbsp;<?php echo $stats_mostlimit ?> Most Recent Posts<br /> 
    113113                                    <input type="checkbox" name="stats_display[]" value="recent_commtents"<?php checked(1, $stats_display['recent_commtents']); ?> />&nbsp;&nbsp;<?php echo $stats_mostlimit ?> Most Recent Comments<br /> 
     
    133133                                          } 
    134134                                    ?> 
    135                                     <p><b>Authors Stats</b></p> 
     135                                    <p><strong>Authors Stats</strong></p> 
    136136                                    <input type="checkbox" name="stats_display[]" value="authors"<?php checked(1, $stats_display['authors']); ?> />&nbsp;&nbsp;Authors<br /> 
    137                                     <p><b>Comments' Members Stats</b></p> 
     137                                    <p><strong>Comments' Members Stats</strong></p> 
    138138                                    <input type="checkbox" name="stats_display[]" value="comment_members"<?php checked(1, $stats_display['comment_members']); ?> />&nbsp;&nbsp;Comment Members<br /> 
    139                                     <p><b>Misc Stats</b></p> 
     139                                    <p><strong>Misc Stats</strong></p> 
    140140                                    <input type="checkbox" name="stats_display[]" value="post_cats"<?php checked(1, $stats_display['post_cats']); ?> />&nbsp;&nbsp;Post Categories<br /> 
    141141                                    <input type="checkbox" name="stats_display[]" value="link_cats"<?php checked(1, $stats_display['link_cats']); ?> />&nbsp;&nbsp;Link Categories<br /> 
  • wp-stats/trunk/stats/stats-widget.php

    r6318 r6409  
    4747                  if(!empty($stats_total_options)) { 
    4848                        echo '<ul>'."\n"; 
    49                         echo '<li><b>Total Stats</b></li>'."\n"; 
     49                        echo '<li><strong>Total Stats</strong></li>'."\n"; 
    5050                        echo '<li>'."\n"; 
    5151                        echo '<ul>'."\n"; 
    5252                        // Total Authors 
    5353                        if($stats_total_options['authors'] == 1) { 
    54                               echo '<li><b>'.get_totalauthors(false).'</b> Authors</li>'."\n"; 
     54                              echo '<li><strong>'.get_totalauthors(false).'</strong> Authors</li>'."\n"; 
    5555                        } 
    5656                        // Total Posts 
    5757                        if($stats_total_options['posts'] == 1) { 
    58                               echo '<li><b>'.get_totalposts(false).'</b> Posts</li>'."\n"; 
     58                              echo '<li><strong>'.get_totalposts(false).'</strong> Posts</li>'."\n"; 
    5959                        } 
    6060                        // Total Pages 
    6161                        if($stats_total_options['pages'] == 1) { 
    62                               echo '<li><b>'.get_totalpages(false).'</b> Pages</li>'."\n"; 
     62                              echo '<li><strong>'.get_totalpages(false).'</strong> Pages</li>'."\n"; 
    6363                        } 
    6464                        // Total Comments 
    6565                        if($stats_total_options['comments'] == 1) { 
    66                               echo '<li><b>'.get_totalcomments(false).'</b> Comments</li>'."\n"; 
     66                              echo '<li><strong>'.get_totalcomments(false).'</strong> Comments</li>'."\n"; 
    6767                        } 
    6868                        // Total Comment Posters 
    6969                        if($stats_total_options['commenters'] == 1) { 
    70                               echo '<li><b>'.get_totalcommentposters(false).'</b> Comment Posters</li>'."\n"; 
     70                              echo '<li><strong>'.get_totalcommentposters(false).'</strong> Comment Posters</li>'."\n"; 
    7171                        } 
    7272                        // Total Links 
    7373                        if($stats_total_options['links'] == 1) { 
    74                               echo '<li><b>'.get_totallinks(false).'</b> Links</li>'."\n"; 
     74                              echo '<li><strong>'.get_totallinks(false).'</strong> Links</li>'."\n"; 
    7575                        } 
    7676                        echo '</ul>'."\n"; 
     
    8181                  if($stats_most_options['comments'] == 1) { 
    8282                        echo '<ul>'."\n"; 
    83                         echo '<li><b>'.$limit.' Most Commented</b></li>'."\n"; 
     83                        echo '<li><strong>'.$limit.' Most Commented</strong></li>'."\n"; 
    8484                        echo '<li>'."\n"; 
    8585                        echo '<ul>'."\n"; 
     
    9292                  if($stats_most_options['emails'] == 1) { 
    9393                        echo '<ul>'."\n"; 
    94                         echo '<li><b>'.$limit.' Most Emailed</b></li>'."\n"; 
     94                        echo '<li><strong>'.$limit.' Most Emailed</strong></li>'."\n"; 
    9595                        echo '<li>'."\n"; 
    9696                        echo '<ul>'."\n"; 
     
    103103                  if($stats_most_options['ratings_highest'] == 1) { 
    104104                        echo '<ul>'."\n"; 
    105                         echo '<li><b>'.$limit.' Highest Rated</b></li>'."\n"; 
     105                        echo '<li><strong>'.$limit.' Highest Rated</strong></li>'."\n"; 
    106106                        echo '<li>'."\n"; 
    107107                        echo '<ul>'."\n"; 
     
    114114                  if($stats_most_options['ratings_highest'] == 1) { 
    115115                        echo '<ul>'."\n"; 
    116                         echo '<li><b>'.$limit.' Most Rated</b></li>'."\n"; 
     116                        echo '<li><strong>'.$limit.' Most Rated</strong></li>'."\n"; 
    117117                        echo '<li>'."\n"; 
    118118                        echo '<ul>'."\n"; 
     
    125125                  if($stats_most_options['views'] == 1) { 
    126126                        echo '<ul>'."\n"; 
    127                         echo '<li><b>'.$limit.' Most Viewed</b></li>'."\n"; 
     127                        echo '<li><strong>'.$limit.' Most Viewed</strong></li>'."\n"; 
    128128                        echo '<li>'."\n"; 
    129129                        echo '<ul>'."\n"; 
  • wp-stats/trunk/stats/stats.php

    r6318 r6409  
    367367            if($stats_display['total_stats'] == 1) { 
    368368                  $temp_stats .= '<h2>General Stats</h2>'."\n"; 
    369                   $temp_stats .= '<p><b>Total Stats</b></p>'."\n"; 
    370                   $temp_stats .= '<ul>'."\n"; 
    371                   $temp_stats .= '<li><b>'.get_totalauthors(false).'</b> Authors To This Blog.</li>'."\n"; 
    372                   $temp_stats .= '<li><b>'.get_totalposts(false).'</b> Posts Were Posted.</li>'."\n"; 
    373                   $temp_stats .= '<li><b>'.get_totalpages(false).'</b> Pages Were Created.</li>'."\n"; 
    374                   $temp_stats .= '<li><b>'.get_totalcomments(false).'</b> Comments Were Posted.</li>'."\n"; 
    375                   $temp_stats .= '<li><b>'.get_totalcommentposters(false).'</b> Different Nicks Were Represented In The Comments.</li>'."\n"; 
    376                   $temp_stats .= '<li><b>'.get_totallinks(false).'</b> Links Were Added.</li>'."\n"; 
     369                  $temp_stats .= '<p><strong>Total Stats</strong></p>'."\n"; 
     370                  $temp_stats .= '<ul>'."\n"; 
     371                  $temp_stats .= '<li><strong>'.get_totalauthors(false).'</strong> Authors To This Blog.</li>'."\n"; 
     372                  $temp_stats .= '<li><strong>'.get_totalposts(false).'</strong> Posts Were Posted.</li>'."\n"; 
     373                  $temp_stats .= '<li><strong>'.get_totalpages(false).'</strong> Pages Were Created.</li>'."\n"; 
     374                  $temp_stats .= '<li><strong>'.get_totalcomments(false).'</strong> Comments Were Posted.</li>'."\n"; 
     375                  $temp_stats .= '<li><strong>'.get_totalcommentposters(false).'</strong> Different Nicks Were Represented In The Comments.</li>'."\n"; 
     376                  $temp_stats .= '<li><strong>'.get_totallinks(false).'</strong> Links Were Added.</li>'."\n"; 
    377377                  $temp_stats .= '</ul>'."\n"; 
    378378            } 
     
    385385            // WP-EMail Stats        
    386386            if(function_exists('wp_email') && $stats_display['email'] == 1) { 
    387                   $temp_stats .= '<p><b>WP-EMail</b></p>'."\n"; 
    388                   $temp_stats .= '<ul>'."\n"; 
    389                   $temp_stats .= '<li><b>'.get_emails(false).'</b> Emails Were Sent.</li>'."\n"; 
    390                   $temp_stats .= '<li><b>'.get_emails_success(false).'</b> Emails Were Sent Successfully.</li>'."\n"; 
    391                   $temp_stats .= '<li><b>'.get_emails_failed(false).'</b> Emails Failed To Send.</li>'."\n"; 
     387                  $temp_stats .= '<p><strong>WP-EMail</strong></p>'."\n"; 
     388                  $temp_stats .= '<ul>'."\n"; 
     389                  $temp_stats .= '<li><strong>'.get_emails(false).'</strong> Emails Were Sent.</li>'."\n"; 
     390                  $temp_stats .= '<li><strong>'.get_emails_success(false).'</strong> Emails Were Sent Successfully.</li>'."\n"; 
     391                  $temp_stats .= '<li><strong>'.get_emails_failed(false).'</strong> Emails Failed To Send.</li>'."\n"; 
    392392                  $temp_stats .= '</ul>'."\n"; 
    393393            } 
     
    395395            // WP-Polls Stats        
    396396            if(function_exists('get_poll') && $stats_display['polls'] == 1) { 
    397                   $temp_stats .= '<p><b>WP-Polls</b></p>'."\n"; 
    398                   $temp_stats .= '<ul>'."\n"; 
    399                   $temp_stats .= '<li><b>'.get_pollquestions(false).'</b> Polls Were Created.</li>'."\n"; 
    400                   $temp_stats .= '<li><b>'.get_pollanswers(false).'</b> Polls\' Answers Were Given.</li>'."\n"; 
    401                   $temp_stats .= '<li><b>'.get_pollvotes(false).'</b> Votes Were Casted.</li>'."\n"; 
     397                  $temp_stats .= '<p><strong>WP-Polls</strong></p>'."\n"; 
     398                  $temp_stats .= '<ul>'."\n"; 
     399                  $temp_stats .= '<li><strong>'.get_pollquestions(false).'</strong> Polls Were Created.</li>'."\n"; 
     400                  $temp_stats .= '<li><strong>'.get_pollanswers(false).'</strong> Polls\' Answers Were Given.</li>'."\n"; 
     401                  $temp_stats .= '<li><strong>'.get_pollvotes(false).'</strong> Votes Were Casted.</li>'."\n"; 
    402402                  $temp_stats .= '</ul>'."\n"; 
    403403            } 
     
    405405            // WP-PostRatings Stats        
    406406            if(function_exists('the_ratings') && $stats_display['ratings'] == 1) { 
    407                   $temp_stats .= '<p><b>WP-PostRatings</b></p>'."\n"; 
    408                   $temp_stats .= '<ul>'."\n"; 
    409                   $temp_stats .= '<li><b>'.get_ratings_votes(false).'</b> Votes Were Casted.</li>'."\n"; 
    410                   $temp_stats .= '<li><b>'.get_ratings_users(false).'</b> Users Casted Their Vote.</li>'."\n"; 
     407                  $temp_stats .= '<p><strong>WP-PostRatings</strong></p>'."\n"; 
     408                  $temp_stats .= '<ul>'."\n"; 
     409                  $temp_stats .= '<li><strong>'.get_ratings_votes(false).'</strong> Votes Were Casted.</li>'."\n"; 
     410                  $temp_stats .= '<li><strong>'.get_ratings_users(false).'</strong> Users Casted Their Vote.</li>'."\n"; 
    411411                  $temp_stats .= '</ul>'."\n"; 
    412412            } 
     
    414414            // WP-PostViews Stats          
    415415            if(function_exists('the_views') && $stats_display['views'] == 1) { 
    416                   $temp_stats .= '<p><b>WP-PostViews</b></p>'."\n"; 
    417                   $temp_stats .= '<ul>'."\n"; 
    418                   $temp_stats .= '<li><b>'.get_totalviews(false).'</b> Views Were Generated.</li>'."\n"; 
     416                  $temp_stats .= '<p><strong>WP-PostViews</strong></p>'."\n"; 
     417                  $temp_stats .= '<ul>'."\n"; 
     418                  $temp_stats .= '<li><strong>'.get_totalviews(false).'</strong> Views Were Generated.</li>'."\n"; 
    419419                  $temp_stats .= '</ul>'."\n"; 
    420420            } 
     
    422422            // WP-UserOnline Stats         
    423423            if(function_exists('useronline') && $stats_display['useronline'] == 1) { 
    424                   $temp_stats .= '<p><b>WP-UserOnline</b></p>'."\n"; 
    425                   $temp_stats .= '<ul>'."\n"; 
    426                   $temp_stats .= '<li><b>'.get_useronline('', '', false).'</b> User(s) Online Now.</li>'."\n"; 
    427                   $temp_stats .= '<li>Most users ever online was <b>'.get_most_useronline(false).'</b>.</li>'."\n"; 
    428                   $temp_stats .= '<li>On <b>'.get_most_useronline_date(false).'</b>.</li>'."\n"; 
     424                  $temp_stats .= '<p><strong>WP-UserOnline</strong></p>'."\n"; 
     425                  $temp_stats .= '<ul>'."\n"; 
     426                  $temp_stats .= '<li><strong>'.get_useronline('', '', false).'</strong> User(s) Online Now.</li>'."\n"; 
     427                  $temp_stats .= '<li>Most users ever online was <strong>'.get_most_useronline(false).'</strong>.</li>'."\n"; 
     428                  $temp_stats .= '<li>On <strong>'.get_most_useronline_date(false).'</strong>.</li>'."\n"; 
    429429                  $temp_stats .= '</ul>'."\n"; 
    430430            } 
     
    437437            // Recent Posts 
    438438            if($stats_display['recent_posts'] == 1) { 
    439                   $temp_stats .= '<p><b>'.$stats_mostlimit.' Recent Posts</b></p>'."\n"; 
     439                  $temp_stats .= '<p><strong>'.$stats_mostlimit.' Recent Posts</strong></p>'."\n"; 
    440440                  $temp_stats .= '<ul>'."\n"; 
    441441                  $temp_stats .= get_recentposts('', $stats_mostlimit, false); 
     
    445445            // Recent Comments 
    446446            if($stats_display['recent_commtents'] == 1) { 
    447                   $temp_stats .= '<p><b>'.$stats_mostlimit.' Recent Comments</b></p>'."\n"; 
     447                  $temp_stats .= '<p><strong>'.$stats_mostlimit.' Recent Comments</strong></p>'."\n"; 
    448448                  $temp_stats .= '<ul>'."\n"; 
    449449                  $temp_stats .= get_recentcomments('', $stats_mostlimit, false); 
     
    453453            // Most Commented Post 
    454454            if($stats_display['commented_post'] == 1) { 
    455                   $temp_stats .= '<p><b>'.$stats_mostlimit.' Most Commented Post</b></p>'."\n"; 
     455                  $temp_stats .= '<p><strong>'.$stats_mostlimit.' Most Commented Post</strong></p>'."\n"; 
    456456                  $temp_stats .= '<ul>'."\n"; 
    457457                  $temp_stats .= get_mostcommented('', $stats_mostlimit, 0, false); 
     
    461461            // WP-EMail (Most EMailed Post) 
    462462            if(function_exists('wp_email') && $stats_display['emailed_most'] == 1) { 
    463                   $temp_stats .= '<p><b>'.$stats_mostlimit.' Most Emailed Post</b></p>'."\n"; 
     463                  $temp_stats .= '<p><strong>'.$stats_mostlimit.' Most Emailed Post</strong></p>'."\n"; 
    464464                  $temp_stats .= '<ul>'."\n"; 
    465465                  $temp_stats .= get_mostemailed('', $stats_mostlimit, 0, false); 
     
    470470            if(function_exists('the_ratings')) { 
    471471                  if($stats_display['rated_highest'] == 1) { 
    472                         $temp_stats .= '<p><b>'.$stats_mostlimit.' Highest Rated Post</b></p>'."\n"; 
     472                        $temp_stats .= '<p><strong>'.$stats_mostlimit.' Highest Rated Post</strong></p>'."\n"; 
    473473                        $temp_stats .= '<ul>'."\n"; 
    474474                        $temp_stats .= get_highest_rated('', $stats_mostlimit, 0, false); 
     
    476476                  } 
    477477                  if($stats_display['rated_most'] == 1) { 
    478                         $temp_stats .= '<p><b>'.$stats_mostlimit.' Most Rated Post</b></p>'."\n"; 
     478                        $temp_stats .= '<p><strong>'.$stats_mostlimit.' Most Rated Post</strong></p>'."\n"; 
    479479                        $temp_stats .= '<ul>'."\n"; 
    480480                        $temp_stats .= get_most_rated('', $stats_mostlimit, 0, false); 
     
    485485            // WP-PostViews (Most Viewed Post) 
    486486            if(function_exists('the_views') && $stats_display['viewed_most'] == 1) { 
    487                   $temp_stats .= '<p><b>'.$stats_mostlimit.' Most Viewed Post</b></p>'."\n"; 
     487                  $temp_stats .= '<p><strong>'.$stats_mostlimit.' Most Viewed Post</strong></p>'."\n"; 
    488488                  $temp_stats .= '<ul>'."\n"; 
    489489                  $temp_stats .= get_most_viewed('', $stats_mostlimit, 0, false); 
     
    494494            if($stats_display['authors'] == 1) { 
    495495                  $temp_stats .= '<h2>Authors Stats</h2>'."\n"; 
    496                   $temp_stats .= '<p><b>Authors</b></p>'."\n"; 
     496                  $temp_stats .= '<p><strong>Authors</strong></p>'."\n"; 
    497497                  $temp_stats .= '<ol>'."\n"; 
    498498                  $temp_stats .= get_authorsstats(false); 
     
    503503            if($stats_display['comment_members'] == 1) { 
    504504                  $temp_stats .= '<h2>Comments\' Members Stats</h2>'."\n"; 
    505                   $temp_stats .= '<p><b>Comment Members</b></p>'."\n"; 
     505                  $temp_stats .= '<p><strong>Comment Members</strong></p>'."\n"; 
    506506                  $temp_stats .= '<ol>'."\n"; 
    507507                  $temp_stats .= get_commentmembersstats(-1, false); 
     
    516516            // Post Categories 
    517517            if($stats_display['post_cats'] == 1) { 
    518                   $temp_stats .= '<p><b>Post Categories</b></p>'."\n"; 
     518                  $temp_stats .= '<p><strong>Post Categories</strong></p>'."\n"; 
    519519                  $temp_stats .= '<ul>'."\n"; 
    520520                  $temp_stats .= list_cats(1,'All','name','asc','',true,0,1,0,1,true,0,0,1,'','','',true); 
     
    524524            // Link Categories 
    525525            if($stats_display['link_cats'] == 1) { 
    526                   $temp_stats .= '<p><b>Link Categories</b></p>'."\n"; 
     526                  $temp_stats .= '<p><strong>Link Categories</strong></p>'."\n"; 
    527527                  $temp_stats .= '<ul>'."\n"; 
    528528                  $temp_stats .= get_linkcats(false); 
     
    556556 
    557557            $temp_stats .= '<h2>Comments Posted By '.$comment_author.'</h2>'."\n"; 
    558             $temp_stats .= '<p>Displaying <b>'.$displayonpage.'</b> To <b>'.$maxonpage.'</b> Of <b>'.$totalcomments.'</b> Comments</p>'."\n"; 
     558            $temp_stats .= '<p>Displaying <strong>'.$displayonpage.'</strong> To <strong>'.$maxonpage.'</strong> Of <strong>'.$totalcomments.'</strong> Comments</p>'."\n"; 
    559559 
    560560            // Get Comments 
     
    572572                              // If New Title, Print It Out 
    573573                              if($post_title != $cache_post_title) { 
    574                                     $temp_stats .= "<p><b><a href=\"".get_permalink()."\" title=\"Posted On $post_date\">Protected: $post_title</a></b></p>\n"; 
     574                                    $temp_stats .= "<p><strong><a href=\"".get_permalink()."\" title=\"Posted On $post_date\">Protected: $post_title</a></strong></p>\n"; 
    575575                                    $temp_stats .= "<blockquote>Comments Protected</blockquote>\n";    
    576576                              }                                          
     
    578578                              // If New Title, Print It Out 
    579579                              if($post_title != $cache_post_title) { 
    580                                     $temp_stats .= "<p><b><a href=\"".get_permalink()."\" title=\"Posted On $post_date\">$post_title</a></b></p>\n"; 
     580                                    $temp_stats .= "<p><strong><a href=\"".get_permalink()."\" title=\"Posted On $post_date\">$post_title</a></strong></p>\n"; 
    581581                              } 
    582                               $temp_stats .= "<blockquote>$comment_content <a href=\"".get_permalink()."#comment-$comment_id\">Comment</a> Posted By <b>$comment_author2</b> On $comment_date</blockquote>\n";                                 
     582                              $temp_stats .= "<blockquote>$comment_content <a href=\"".get_permalink()."#comment-$comment_id\">Comment</a> Posted By <strong>$comment_author2</strong> On $comment_date</blockquote>\n";                                   
    583583                        } 
    584584                        $cache_post_title = $post_title; 
     
    594594                  $temp_stats .= '<span style="float: left">'."\n"; 
    595595                  if($page > 1 && ((($page*$perpage)-($perpage-1)) < $totalcomments)) { 
    596                         $temp_stats .= '<b>&laquo;</b> <a href="'.stats_page_link($comment_author_link, $page-1).'" title="&laquo; '.__('Previous Page').'">'.__('Previous Page').'</a>'."\n"; 
     596                        $temp_stats .= '<strong>&laquo;</strong> <a href="'.stats_page_link($comment_author_link, $page-1).'" title="&laquo; '.__('Previous Page').'">'.__('Previous Page').'</a>'."\n"; 
    597597                  } else { 
    598598                        $temp_stats .= '&nbsp;'."\n"; 
     
    602602                  $temp_stats .= '<span style="float: right">'."\n"; 
    603603                  if($page >= 1 && ((($page*$perpage)+1) <  $totalcomments)) { 
    604                         $temp_stats .= '<a href="'.stats_page_link($comment_author_link, $page+1).'" title="'.__('Next Page').' &raquo;">'.__('Next Page').'</a> <b>&raquo;</b>'."\n"; 
     604                        $temp_stats .= '<a href="'.stats_page_link($comment_author_link, $page+1).'" title="'.__('Next Page').' &raquo;">'.__('Next Page').'</a> <strong>&raquo;</strong>'."\n"; 
    605605                  } else { 
    606606                        $temp_stats .= '&nbsp;'."\n"; 
     
    613613                  $temp_stats .= 'Pages ('.$totalpages.') :'."\n"; 
    614614                  if ($page >= 4) { 
    615                         $temp_stats .= '<b><a href="'.stats_page_link($comment_author_link).'" title="'.__('Go to First Page').'">&laquo; '.__('First').'</a></b> ... '."\n"; 
     615                        $temp_stats .= '<strong><a href="'.stats_page_link($comment_author_link).'" title="'.__('Go to First Page').'">&laquo; '.__('First').'</a></strong> ... '."\n"; 
    616616                  } 
    617617                  if($page > 1) { 
    618                         $temp_stats .= ' <b><a href="'.stats_page_link($comment_author_link, $page-1).'" title="&laquo; '.__('Go to Page').' '.($page-1).'">&laquo;</a></b> '."\n"; 
     618                        $temp_stats .= ' <strong><a href="'.stats_page_link($comment_author_link, $page-1).'" title="&laquo; '.__('Go to Page').' '.($page-1).'">&laquo;</a></strong> '."\n"; 
    619619                  } 
    620620                  for($i = $page - 2 ; $i  <= $page +2; $i++) { 
    621621                        if ($i >= 1 && $i <= $totalpages) { 
    622622                              if($i == $page) { 
    623                                     $temp_stats .= "<b>[$i]</b> "."\n"; 
     623                                    $temp_stats .= "<strong>[$i]</strong> "."\n"; 
    624624                              } else { 
    625625                                    $temp_stats .= '<a href="'.stats_page_link($comment_author_link, $i).'" title="'.__('Page').' '.$i.'">'.$i.'</a> '."\n"; 
     
    628628                  } 
    629629                  if($page < $totalpages) { 
    630                         $temp_stats .= ' <b><a href="'.stats_page_link($comment_author_link, $page+1).'" title="'.__('Go to Page').' '.($page+1).' &raquo;">&raquo;</a></b> '."\n"; 
     630                        $temp_stats .= ' <strong><a href="'.stats_page_link($comment_author_link, $page+1).'" title="'.__('Go to Page').' '.($page+1).' &raquo;">&raquo;</a></strong> '."\n"; 
    631631                  } 
    632632                  if (($page+2) < $totalpages) { 
    633                         $temp_stats .= ' ... <b><a href="'.stats_page_link($comment_author_link, $totalpages).'" title="'.__('Go to Last Page').'">'.__('Last').' &raquo;</a></b>'."\n"; 
     633                        $temp_stats .= ' ... <strong><a href="'.stats_page_link($comment_author_link, $totalpages).'" title="'.__('Go to Last Page').'">'.__('Last').' &raquo;</a></strong>'."\n"; 
    634634                  } 
    635635                  $temp_stats .= '</p>'."\n"; 
    636636            } 
    637             $temp_stats .= '<p><b>&laquo;&laquo;</b> <a href="'.$stats_url.'">Back To Stats Page</a></p>'."\n"; 
     637            $temp_stats .= '<p><strong>&laquo;&laquo;</strong> <a href="'.$stats_url.'">Back To Stats Page</a></p>'."\n"; 
    638638      } // End If 
    639639