Changeset 6409
- Timestamp:
- 09/23/06 04:57:31 (2 years ago)
- Files:
-
- wp-stats/trunk/readme.html (modified) (1 diff)
- wp-stats/trunk/stats/stats-options.php (modified) (3 diffs)
- wp-stats/trunk/stats/stats-widget.php (modified) (6 diffs)
- wp-stats/trunk/stats/stats.php (modified) (24 diffs)
- wp-stats/trunk/stats/wp-stats.php (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-stats/trunk/readme.html
r6318 r6409 218 218 <ul> 219 219 <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> 221 221 <li>NEW: Added Widget Title Option To WP-Stats Widget</li> 222 222 </ul> wp-stats/trunk/stats/stats-options.php
r6318 r6409 79 79 <th align="left" width="30%"><?php _e('Type Of Stats To Display'); ?></th> 80 80 <td align="left"> 81 <p>< b>General Stats</b></p>81 <p><strong>General Stats</strong></p> 82 82 <input type="checkbox" name="stats_display[]" value="total_stats"<?php checked(1, $stats_display['total_stats']); ?> /> Total<br /> 83 <p>< b>Plugin Stats</b></p>83 <p><strong>Plugin Stats</strong></p> 84 84 <?php 85 85 if(function_exists('wp_email')) { … … 109 109 } 110 110 ?> 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> 112 112 <input type="checkbox" name="stats_display[]" value="recent_posts"<?php checked(1, $stats_display['recent_posts']); ?> /> <?php echo $stats_mostlimit ?> Most Recent Posts<br /> 113 113 <input type="checkbox" name="stats_display[]" value="recent_commtents"<?php checked(1, $stats_display['recent_commtents']); ?> /> <?php echo $stats_mostlimit ?> Most Recent Comments<br /> … … 133 133 } 134 134 ?> 135 <p>< b>Authors Stats</b></p>135 <p><strong>Authors Stats</strong></p> 136 136 <input type="checkbox" name="stats_display[]" value="authors"<?php checked(1, $stats_display['authors']); ?> /> Authors<br /> 137 <p>< b>Comments' Members Stats</b></p>137 <p><strong>Comments' Members Stats</strong></p> 138 138 <input type="checkbox" name="stats_display[]" value="comment_members"<?php checked(1, $stats_display['comment_members']); ?> /> Comment Members<br /> 139 <p>< b>Misc Stats</b></p>139 <p><strong>Misc Stats</strong></p> 140 140 <input type="checkbox" name="stats_display[]" value="post_cats"<?php checked(1, $stats_display['post_cats']); ?> /> Post Categories<br /> 141 141 <input type="checkbox" name="stats_display[]" value="link_cats"<?php checked(1, $stats_display['link_cats']); ?> /> Link Categories<br /> wp-stats/trunk/stats/stats-widget.php
r6318 r6409 47 47 if(!empty($stats_total_options)) { 48 48 echo '<ul>'."\n"; 49 echo '<li>< b>Total Stats</b></li>'."\n";49 echo '<li><strong>Total Stats</strong></li>'."\n"; 50 50 echo '<li>'."\n"; 51 51 echo '<ul>'."\n"; 52 52 // Total Authors 53 53 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"; 55 55 } 56 56 // Total Posts 57 57 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"; 59 59 } 60 60 // Total Pages 61 61 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"; 63 63 } 64 64 // Total Comments 65 65 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"; 67 67 } 68 68 // Total Comment Posters 69 69 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"; 71 71 } 72 72 // Total Links 73 73 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"; 75 75 } 76 76 echo '</ul>'."\n"; … … 81 81 if($stats_most_options['comments'] == 1) { 82 82 echo '<ul>'."\n"; 83 echo '<li>< b>'.$limit.' Most Commented</b></li>'."\n";83 echo '<li><strong>'.$limit.' Most Commented</strong></li>'."\n"; 84 84 echo '<li>'."\n"; 85 85 echo '<ul>'."\n"; … … 92 92 if($stats_most_options['emails'] == 1) { 93 93 echo '<ul>'."\n"; 94 echo '<li>< b>'.$limit.' Most Emailed</b></li>'."\n";94 echo '<li><strong>'.$limit.' Most Emailed</strong></li>'."\n"; 95 95 echo '<li>'."\n"; 96 96 echo '<ul>'."\n"; … … 103 103 if($stats_most_options['ratings_highest'] == 1) { 104 104 echo '<ul>'."\n"; 105 echo '<li>< b>'.$limit.' Highest Rated</b></li>'."\n";105 echo '<li><strong>'.$limit.' Highest Rated</strong></li>'."\n"; 106 106 echo '<li>'."\n"; 107 107 echo '<ul>'."\n"; … … 114 114 if($stats_most_options['ratings_highest'] == 1) { 115 115 echo '<ul>'."\n"; 116 echo '<li>< b>'.$limit.' Most Rated</b></li>'."\n";116 echo '<li><strong>'.$limit.' Most Rated</strong></li>'."\n"; 117 117 echo '<li>'."\n"; 118 118 echo '<ul>'."\n"; … … 125 125 if($stats_most_options['views'] == 1) { 126 126 echo '<ul>'."\n"; 127 echo '<li>< b>'.$limit.' Most Viewed</b></li>'."\n";127 echo '<li><strong>'.$limit.' Most Viewed</strong></li>'."\n"; 128 128 echo '<li>'."\n"; 129 129 echo '<ul>'."\n"; wp-stats/trunk/stats/stats.php
r6318 r6409 367 367 if($stats_display['total_stats'] == 1) { 368 368 $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"; 377 377 $temp_stats .= '</ul>'."\n"; 378 378 } … … 385 385 // WP-EMail Stats 386 386 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"; 392 392 $temp_stats .= '</ul>'."\n"; 393 393 } … … 395 395 // WP-Polls Stats 396 396 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"; 402 402 $temp_stats .= '</ul>'."\n"; 403 403 } … … 405 405 // WP-PostRatings Stats 406 406 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"; 411 411 $temp_stats .= '</ul>'."\n"; 412 412 } … … 414 414 // WP-PostViews Stats 415 415 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"; 419 419 $temp_stats .= '</ul>'."\n"; 420 420 } … … 422 422 // WP-UserOnline Stats 423 423 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"; 429 429 $temp_stats .= '</ul>'."\n"; 430 430 } … … 437 437 // Recent Posts 438 438 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"; 440 440 $temp_stats .= '<ul>'."\n"; 441 441 $temp_stats .= get_recentposts('', $stats_mostlimit, false); … … 445 445 // Recent Comments 446 446 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"; 448 448 $temp_stats .= '<ul>'."\n"; 449 449 $temp_stats .= get_recentcomments('', $stats_mostlimit, false); … … 453 453 // Most Commented Post 454 454 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"; 456 456 $temp_stats .= '<ul>'."\n"; 457 457 $temp_stats .= get_mostcommented('', $stats_mostlimit, 0, false); … … 461 461 // WP-EMail (Most EMailed Post) 462 462 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"; 464 464 $temp_stats .= '<ul>'."\n"; 465 465 $temp_stats .= get_mostemailed('', $stats_mostlimit, 0, false); … … 470 470 if(function_exists('the_ratings')) { 471 471 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"; 473 473 $temp_stats .= '<ul>'."\n"; 474 474 $temp_stats .= get_highest_rated('', $stats_mostlimit, 0, false); … … 476 476 } 477 477 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"; 479 479 $temp_stats .= '<ul>'."\n"; 480 480 $temp_stats .= get_most_rated('', $stats_mostlimit, 0, false); … … 485 485 // WP-PostViews (Most Viewed Post) 486 486 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"; 488 488 $temp_stats .= '<ul>'."\n"; 489 489 $temp_stats .= get_most_viewed('', $stats_mostlimit, 0, false); … … 494 494 if($stats_display['authors'] == 1) { 495 495 $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"; 497 497 $temp_stats .= '<ol>'."\n"; 498 498 $temp_stats .= get_authorsstats(false); … … 503 503 if($stats_display['comment_members'] == 1) { 504 504 $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"; 506 506 $temp_stats .= '<ol>'."\n"; 507 507 $temp_stats .= get_commentmembersstats(-1, false); … … 516 516 // Post Categories 517 517 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"; 519 519 $temp_stats .= '<ul>'."\n"; 520 520 $temp_stats .= list_cats(1,'All','name','asc','',true,0,1,0,1,true,0,0,1,'','','',true); … … 524 524 // Link Categories 525 525 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"; 527 527 $temp_stats .= '<ul>'."\n"; 528 528 $temp_stats .= get_linkcats(false); … … 556 556 557 557 $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"; 559 559 560 560 // Get Comments … … 572 572 // If New Title, Print It Out 573 573 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"; 575 575 $temp_stats .= "<blockquote>Comments Protected</blockquote>\n"; 576 576 } … … 578 578 // If New Title, Print It Out 579 579 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"; 581 581 } 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"; 583 583 } 584 584 $cache_post_title = $post_title; … … 594 594 $temp_stats .= '<span style="float: left">'."\n"; 595 595 if($page > 1 && ((($page*$perpage)-($perpage-1)) < $totalcomments)) { 596 $temp_stats .= '< b>«</b> <a href="'.stats_page_link($comment_author_link, $page-1).'" title="« '.__('Previous Page').'">'.__('Previous Page').'</a>'."\n";596 $temp_stats .= '<strong>«</strong> <a href="'.stats_page_link($comment_author_link, $page-1).'" title="« '.__('Previous Page').'">'.__('Previous Page').'</a>'."\n"; 597 597 } else { 598 598 $temp_stats .= ' '."\n"; … … 602 602 $temp_stats .= '<span style="float: right">'."\n"; 603 603 if($page >= 1 && ((($page*$perpage)+1) < $totalcomments)) { 604 $temp_stats .= '<a href="'.stats_page_link($comment_author_link, $page+1).'" title="'.__('Next Page').' »">'.__('Next Page').'</a> < b>»</b>'."\n";604 $temp_stats .= '<a href="'.stats_page_link($comment_author_link, $page+1).'" title="'.__('Next Page').' »">'.__('Next Page').'</a> <strong>»</strong>'."\n"; 605 605 } else { 606 606 $temp_stats .= ' '."\n"; … … 613 613 $temp_stats .= 'Pages ('.$totalpages.') :'."\n"; 614 614 if ($page >= 4) { 615 $temp_stats .= '< b><a href="'.stats_page_link($comment_author_link).'" title="'.__('Go to First Page').'">« '.__('First').'</a></b> ... '."\n";615 $temp_stats .= '<strong><a href="'.stats_page_link($comment_author_link).'" title="'.__('Go to First Page').'">« '.__('First').'</a></strong> ... '."\n"; 616 616 } 617 617 if($page > 1) { 618 $temp_stats .= ' < b><a href="'.stats_page_link($comment_author_link, $page-1).'" title="« '.__('Go to Page').' '.($page-1).'">«</a></b> '."\n";618 $temp_stats .= ' <strong><a href="'.stats_page_link($comment_author_link, $page-1).'" title="« '.__('Go to Page').' '.($page-1).'">«</a></strong> '."\n"; 619 619 } 620 620 for($i = $page - 2 ; $i <= $page +2; $i++) { 621 621 if ($i >= 1 && $i <= $totalpages) { 622 622 if($i == $page) { 623 $temp_stats .= "< b>[$i]</b> "."\n";623 $temp_stats .= "<strong>[$i]</strong> "."\n"; 624 624 } else { 625 625 $temp_stats .= '<a href="'.stats_page_link($comment_author_link, $i).'" title="'.__('Page').' '.$i.'">'.$i.'</a> '."\n"; … … 628 628 } 629 629 if($page < $totalpages) { 630 $temp_stats .= ' < b><a href="'.stats_page_link($comment_author_link, $page+1).'" title="'.__('Go to Page').' '.($page+1).' »">»</a></b> '."\n";630 $temp_stats .= ' <strong><a href="'.stats_page_link($comment_author_link, $page+1).'" title="'.__('Go to Page').' '.($page+1).' »">»</a></strong> '."\n"; 631 631 } 632 632 if (($page+2) < $totalpages) { 633 $temp_stats .= ' ... < b><a href="'.stats_page_link($comment_author_link, $totalpages).'" title="'.__('Go to Last Page').'">'.__('Last').' »</a></b>'."\n";633 $temp_stats .= ' ... <strong><a href="'.stats_page_link($comment_author_link, $totalpages).'" title="'.__('Go to Last Page').'">'.__('Last').' »</a></strong>'."\n"; 634 634 } 635 635 $temp_stats .= '</p>'."\n"; 636 636 } 637 $temp_stats .= '<p>< b>««</b> <a href="'.$stats_url.'">Back To Stats Page</a></p>'."\n";637 $temp_stats .= '<p><strong>««</strong> <a href="'.$stats_url.'">Back To Stats Page</a></p>'."\n"; 638 638 } // End If 639 639
