function test_multiple_accounts_via_register_new_user_if_allow_for_everyone()
 {
     $this->set_option(array('allow_for_everyone' => true));
     $users = array();
     for ($i = 0; $i < 4; $i++) {
         $users[] = register_new_user("user{$i}", '*****@*****.**');
     }
     $this->assertTrue(c2c_has_multiple_accounts('*****@*****.**'));
     $this->assertEquals(5, c2c_count_multiple_accounts('*****@*****.**'));
 }
 function count_multiple_accounts($email)
 {
     _deprecated_function(__FUNCTION__, '2.0', 'c2c_count_multiple_accounts');
     return c2c_count_multiple_accounts($email);
 }