Changeset 979 for plugins/pbem

Show
Ignore:
Timestamp:
09/19/08 04:48:36 (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/pbem/trunk/pbem.plugin.php

    r870 r979  
    4949 
    5050  public static function check_accounts() { 
    51     $users= Users::get(); 
     51    $users = Users::get(); 
    5252     
    5353    foreach ($users as $user) { 
     
    6969          } 
    7070           
    71           $postdata= array( 
     71          $postdata = array( 
    7272            'slug' => $header->subject, 
    7373            'title' => $header->subject, 
     
    8282          EventLog::log( htmlspecialchars( sprintf( 'Mail from %1$s (%2$s): "%3$s" (%4$d bytes)', $header->fromaddress, $header->date, $header->subject, $header->Size ) ) ); 
    8383 
    84           $post= Post::create( $postdata ); 
     84          $post = Post::create( $postdata ); 
    8585           
    8686          if ($post) {