Plugin Directory

Changeset 1066257


Ignore:
Timestamp:
01/12/2015 06:06:19 PM (11 years ago)
Author:
paperleaf
Message:

change variable $content to $temp due to string error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • timespan/trunk/timespan.php

    r1043669 r1066257  
    8383    if (get_option('autots') == 1) {   
    8484        if ( is_single() && is_main_query() ) {
    85             $word_count = str_word_count( strip_tags( $content ) );
     85            $temp = $content;
     86            $word_count = str_word_count( strip_tags( $temp ) );
    8687            $words_per_minute = 250;
    8788            if (get_option('wpm') != '') {
Note: See TracChangeset for help on using the changeset viewer.