How to fix the wp-shortstat 771 error

Fatal error: Cannot access empty property in /home/xxxxxxxx/public_html/wp-content/plugins/wp-shortstat.php on line 771

Line 771:

Change this:
<tr><td colspan=”2″ class=”accent”>Since <?php echo gmdate(”g:i a j M Y”,$wpss->getFirstHit()+(((gmdate(’I'))?($wpss->tz_offset+1):$wpss->tz_offset)*3600));?></td></tr>

To This:
<tr><td colspan=”2″ class=”accent”>Since <?php echo gmdate(”g:i a j M Y”,$wpss->getFirstHit()+(((gmdate(’I'))?($wpss->$tz_offset+1):$wpss->$tz_offset)*3600));?></td></tr>

(Removing the $ in front of both $tz -> tz will solve the problem)

Leave a Reply

You must be logged in to post a comment.