Ignore:
Timestamp:
05/15/08 22:25:54 (4 years ago)
Author:
hverton
Message:

Merged trunk revisions 1342:1407 into the PLi-Fusion branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PLi-Fusion/administration/index.php

    r1335 r1408  
    109109$variables['statistics']['members_deleted'] = dbcount("(user_id)", "users", "user_status='3'"); 
    110110$variables['statistics']['comments'] = dbcount("(comment_id)", "comments"); 
    111 $variables['statistics']['shouts'] = dbcount("(shout_id)", "shoutbox"); 
     111if (dbtable_exists($db_prefix."shoutbox")) { 
     112    $variables['statistics']['shouts'] = dbcount("(shout_id)", "shoutbox"); 
     113} else { 
     114    $variables['statistics']['shouts'] = 0; 
     115} 
    112116$variables['statistics']['posts'] = dbcount("(post_id)", "posts"); 
    113117 
Note: See TracChangeset for help on using the changeset viewer.