Index: fbconnect.module
===================================================================
--- fbconnect.module	(revision 3857)
+++ fbconnect.module	(revision 3858)
@@ -1242,8 +1242,10 @@
      foreach ($data as $account) {
         if ($account->picture && file_exists($account->picture)) {
           $picture = theme('user_picture', $account);
-        }
-        $rows[] = array(($picture) ? $picture : ' ' , theme('username', $account)); 
+        } else {
+	  $picture = ' ';
+	}
+        $rows[] = array($picture, theme('username', $account)); 
       }
       $output = theme('table', NULL, $rows);
     return $output;

Process svn finished
