Changeset 979 for plugins/pbem
- Timestamp:
- 09/19/08 04:48:36 (4 months ago)
- Files:
-
- 1 modified
-
plugins/pbem/trunk/pbem.plugin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/pbem/trunk/pbem.plugin.php
r870 r979 49 49 50 50 public static function check_accounts() { 51 $users = Users::get();51 $users = Users::get(); 52 52 53 53 foreach ($users as $user) { … … 69 69 } 70 70 71 $postdata = array(71 $postdata = array( 72 72 'slug' => $header->subject, 73 73 'title' => $header->subject, … … 82 82 EventLog::log( htmlspecialchars( sprintf( 'Mail from %1$s (%2$s): "%3$s" (%4$d bytes)', $header->fromaddress, $header->date, $header->subject, $header->Size ) ) ); 83 83 84 $post = Post::create( $postdata );84 $post = Post::create( $postdata ); 85 85 86 86 if ($post) {
