@@ -23,7 +23,7 @@ |
||
| 23 | 23 | $this->get("user-registration/"); |
| 24 | 24 | |
| 25 | 25 | $this->submitForm("SignUpForm", "action_doSubmit", array("FirstName" => "John", |
| 26 | - "Password[_Password]" => "admin", |
|
| 26 | + "Password[_Password]" => "admin", |
|
| 27 | 27 | "Password[_ConfirmPassword]" => "admin", "Email" => "[email protected]")); |
| 28 | 28 | |
| 29 | 29 | $this->assertEquals( |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | |
| 29 | 29 | $this->assertEquals( |
| 30 | 30 | 1, |
| 31 | - Member::get()->filter("Email", "[email protected]")->count()>0 ? 1 : 0, |
|
| 31 | + Member::get()->filter("Email", "[email protected]")->count() > 0 ? 1 : 0, |
|
| 32 | 32 | 'testMyForm() returns the user email' |
| 33 | 33 | ); |
| 34 | 34 | } |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | { |
| 23 | 23 | $member = Member::get()->filter("Email", "[email protected]")->first(); |
| 24 | 24 | Injector::inst()->get(IdentityStore::class)->logIn($member); |
| 25 | - $page = $this->get("my-profile/"); // attempt to access the profile Page |
|
| 25 | + $page = $this->get("my-profile/"); // attempt to access the profile Page |
|
| 26 | 26 | $this->assertEquals(200, $page->getStatusCode(), "a page should load"); |
| 27 | 27 | } |
| 28 | 28 | |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | $this->assertEquals( |
| 42 | 42 | 1, |
| 43 | - Member::get()->filter("Email", "[email protected]")->count()>0 ? 1 : 0, |
|
| 43 | + Member::get()->filter("Email", "[email protected]")->count() > 0 ? 1 : 0, |
|
| 44 | 44 | 'testMyForm() returns the email from profile page.' |
| 45 | 45 | ); |
| 46 | 46 | } |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | public function testfindlink() |
| 19 | 19 | { |
| 20 | - $page = $this->get("user-registration/"); // attempt to access the signup Page |
|
| 20 | + $page = $this->get("user-registration/"); // attempt to access the signup Page |
|
| 21 | 21 | $this->assertEquals(200, $page->getStatusCode(), "a page should load"); |
| 22 | 22 | } |
| 23 | 23 | } |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | public function testfindlink() |
| 19 | 19 | { |
| 20 | - $page = $this->get("user-login/"); // attempt to access the user login Page |
|
| 20 | + $page = $this->get("user-login/"); // attempt to access the user login Page |
|
| 21 | 21 | $this->assertEquals(200, $page->getStatusCode(), "a page should load"); |
| 22 | 22 | } |
| 23 | 23 | } |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | { |
| 26 | 26 | if (Security::getCurrentUser()) { |
| 27 | 27 | $html = DBHTMLText::create(); |
| 28 | - $html->setValue("<a href='" . Security::logout_url() . "&BackURL=/'>Logout</a>"); |
|
| 28 | + $html->setValue("<a href='".Security::logout_url()."&BackURL=/'>Logout</a>"); |
|
| 29 | 29 | return $html; |
| 30 | 30 | } |
| 31 | 31 | return false; |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | if (!$allGroups->count()) { |
| 21 | 21 | $authorGroup = new Group(); |
| 22 | 22 | $authorGroup->Code = 'general'; |
| 23 | - $authorGroup->Title = _t(__CLASS__ . '.DefaultGroupTitleGeneral', 'General'); |
|
| 23 | + $authorGroup->Title = _t(__CLASS__.'.DefaultGroupTitleGeneral', 'General'); |
|
| 24 | 24 | $authorGroup->Sort = 1; |
| 25 | 25 | $authorGroup->write(); |
| 26 | 26 | } |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | if ($page = DataObject::get_one(self::class)) { |
| 43 | 43 | return $page; |
| 44 | 44 | } |
| 45 | - user_error(_t(__CLASS__ . '.NoPage', 'No UserProfilePage was found. |
|
| 45 | + user_error(_t(__CLASS__.'.NoPage', 'No UserProfilePage was found. |
|
| 46 | 46 | Please create one in the CMS!'), E_USER_ERROR); |
| 47 | 47 | return null; |
| 48 | 48 | } |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | |
| 38 | 38 | public function ProfileForm() |
| 39 | 39 | { |
| 40 | - $form = new ProfileForm($this, 'ProfileForm'); |
|
| 40 | + $form = new ProfileForm($this, 'ProfileForm'); |
|
| 41 | 41 | if ($this->member) { |
| 42 | 42 | $form->loadDataFrom($this->member); |
| 43 | 43 | } |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | if ($page = DataObject::get_one(self::class)) { |
| 43 | 43 | return $page; |
| 44 | 44 | } |
| 45 | - user_error(_t(__CLASS__ . '.NoPage', 'No LostPasswordPage was found. |
|
| 45 | + user_error(_t(__CLASS__.'.NoPage', 'No LostPasswordPage was found. |
|
| 46 | 46 | Please create one in the CMS!'), E_USER_ERROR); |
| 47 | 47 | return null; |
| 48 | 48 | } |