Show
Ignore:
Timestamp:
09/19/08 04:48:21 (4 months ago)
Author:
MattRead
Message:

coding style fixes. mad props to scoates for the tokenizer foo!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/disqus/trunk/disqus.plugin.php

    r638 r967  
    5959    public function theme_comments( $theme, $post ) 
    6060    { 
    61         $disqus_username= Options::get( 'disqus__username' ); 
     61        $disqus_username = Options::get( 'disqus__username' ); 
    6262        if ( !$post->info->comment_disabled && $post->comments->count == 0 && $disqus_username ) { 
    63             $theme->disqus_username= $disqus_username; 
     63            $theme->disqus_username = $disqus_username; 
    6464            $theme->display( 'disqus_comments' ); 
    6565        }