@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | $user->setDatabase($database); |
| 132 | 132 | |
| 133 | 133 | // Using cached data here! |
| 134 | - if($user->getOAuthOnWikiName(true) == $username) { |
|
| 134 | + if ($user->getOAuthOnWikiName(true) == $username) { |
|
| 135 | 135 | // Success. |
| 136 | 136 | return $user; |
| 137 | 137 | } |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | $user->setDatabase($database); |
| 145 | 145 | |
| 146 | 146 | // Don't use the cached data, but instead query the API. |
| 147 | - if($user->getOAuthOnWikiName(false) == $username) { |
|
| 147 | + if ($user->getOAuthOnWikiName(false) == $username) { |
|
| 148 | 148 | // Success. |
| 149 | 149 | return $user; |
| 150 | 150 | } |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | $u->setDatabase($database); |
| 203 | 203 | $u->isNew = false; |
| 204 | 204 | |
| 205 | - if(! $u->isCheckuser()) { |
|
| 205 | + if (!$u->isCheckuser()) { |
|
| 206 | 206 | continue; |
| 207 | 207 | } |
| 208 | 208 | |
@@ -690,7 +690,7 @@ discard block |
||
| 690 | 690 | $this->identityCache->aud == $oauthConsumerToken && |
| 691 | 691 | $this->identityCache->iss == $oauthMediaWikiCanonicalServer |
| 692 | 692 | ) { |
| 693 | - if( |
|
| 693 | + if ( |
|
| 694 | 694 | $useCached || ( |
| 695 | 695 | DateTime::createFromFormat("U", $this->identityCache->iat) < new DateTime() && |
| 696 | 696 | DateTime::createFromFormat("U", $this->identityCache->exp) > new DateTime() |
@@ -714,7 +714,7 @@ discard block |
||
| 714 | 714 | private function getOAuthOnWikiName($useCached = false) |
| 715 | 715 | { |
| 716 | 716 | $identity = $this->getOAuthIdentity($useCached); |
| 717 | - if($identity !== null) { |
|
| 717 | + if ($identity !== null) { |
|
| 718 | 718 | return $identity->username; |
| 719 | 719 | } |
| 720 | 720 | |
@@ -22,20 +22,20 @@ |
||
| 22 | 22 | */ |
| 23 | 23 | public $numberedList = false; |
| 24 | 24 | |
| 25 | - /** |
|
| 26 | - * @var string |
|
| 27 | - */ |
|
| 28 | - public $numberedListTitle = "#"; |
|
| 25 | + /** |
|
| 26 | + * @var string |
|
| 27 | + */ |
|
| 28 | + public $numberedListTitle = "#"; |
|
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * @var boolean|callable |
|
| 32 | - */ |
|
| 33 | - public $tableCallbackFunction = false; |
|
| 30 | + /** |
|
| 31 | + * @var boolean|callable |
|
| 32 | + */ |
|
| 33 | + public $tableCallbackFunction = false; |
|
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * @var boolean|string[] |
|
| 37 | - */ |
|
| 38 | - public $overrideTableTitles = false; |
|
| 35 | + /** |
|
| 36 | + * @var boolean|string[] |
|
| 37 | + */ |
|
| 38 | + public $overrideTableTitles = false; |
|
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | 41 | * @var int |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | |
| 63 | 63 | $statement = $database->prepare("SELECT * FROM `emailtemplate` WHERE defaultaction = :forcreated AND active = 1;"); |
| 64 | 64 | |
| 65 | - if($defaultAction === false) { |
|
| 65 | + if ($defaultAction === false) { |
|
| 66 | 66 | $statement = $database->prepare( |
| 67 | 67 | "SELECT * FROM `emailtemplate` WHERE defaultaction not in ('created', 'not created') AND active = 1;"); |
| 68 | 68 | } |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | class IrcColourCodeTest extends PHPUnit_Framework_TestCase |
| 4 | 4 | { |
| 5 | - private $irc; |
|
| 5 | + private $irc; |
|
| 6 | 6 | |
| 7 | 7 | public function setUp() |
| 8 | 8 | { |
@@ -11,62 +11,62 @@ discard block |
||
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | public function tearDown() { |
| 14 | - $this->irc = NULL; |
|
| 15 | - } |
|
| 14 | + $this->irc = NULL; |
|
| 15 | + } |
|
| 16 | 16 | |
| 17 | - public function test_colorCodes() { |
|
| 17 | + public function test_colorCodes() { |
|
| 18 | 18 | |
| 19 | - $i = $this->irc; |
|
| 19 | + $i = $this->irc; |
|
| 20 | 20 | |
| 21 | - $this->assertEquals($i::BOLD,"\x02"); |
|
| 22 | - $this->assertEquals($i::ITALIC, "\x09"); |
|
| 23 | - $this->assertEquals($i::STRIKE, "\x13"); |
|
| 24 | - $this->assertEquals($i::UNDERLINE, "\x15"); |
|
| 25 | - $this->assertEquals($i::UNDERLINE2, "\x1f"); |
|
| 26 | - $this->assertEquals($i::REVERSE, "\x16"); |
|
| 27 | - $this->assertEquals($i::RESET, "\x0f"); |
|
| 21 | + $this->assertEquals($i::BOLD,"\x02"); |
|
| 22 | + $this->assertEquals($i::ITALIC, "\x09"); |
|
| 23 | + $this->assertEquals($i::STRIKE, "\x13"); |
|
| 24 | + $this->assertEquals($i::UNDERLINE, "\x15"); |
|
| 25 | + $this->assertEquals($i::UNDERLINE2, "\x1f"); |
|
| 26 | + $this->assertEquals($i::REVERSE, "\x16"); |
|
| 27 | + $this->assertEquals($i::RESET, "\x0f"); |
|
| 28 | 28 | |
| 29 | - $this->assertEquals($i::WHITE, "\x0300"); |
|
| 30 | - $this->assertEquals($i::BLACK, "\x0301"); |
|
| 31 | - $this->assertEquals($i::DARK_BLUE, "\x0302"); |
|
| 32 | - $this->assertEquals($i::DARK_GREEN, "\x0303"); |
|
| 33 | - $this->assertEquals($i::RED, "\x0304"); |
|
| 34 | - $this->assertEquals($i::DARK_RED, "\x0305"); |
|
| 35 | - $this->assertEquals($i::DARK_VIOLET, "\x0306"); |
|
| 36 | - $this->assertEquals($i::ORANGE, "\x0307"); |
|
| 37 | - $this->assertEquals($i::YELLOW, "\x0308"); |
|
| 38 | - $this->assertEquals($i::LIGHT_GREEN, "\x0309"); |
|
| 39 | - $this->assertEquals($i::CYAN, "\x0310"); |
|
| 40 | - $this->assertEquals($i::LIGHT_CYAN, "\x0311"); |
|
| 41 | - $this->assertEquals($i::BLUE, "\x0312"); |
|
| 42 | - $this->assertEquals($i::VIOLET, "\x0313"); |
|
| 43 | - $this->assertEquals($i::DARK_GREY, "\x0314"); |
|
| 44 | - $this->assertEquals($i::LIGHT_GREY, "\x0315"); |
|
| 29 | + $this->assertEquals($i::WHITE, "\x0300"); |
|
| 30 | + $this->assertEquals($i::BLACK, "\x0301"); |
|
| 31 | + $this->assertEquals($i::DARK_BLUE, "\x0302"); |
|
| 32 | + $this->assertEquals($i::DARK_GREEN, "\x0303"); |
|
| 33 | + $this->assertEquals($i::RED, "\x0304"); |
|
| 34 | + $this->assertEquals($i::DARK_RED, "\x0305"); |
|
| 35 | + $this->assertEquals($i::DARK_VIOLET, "\x0306"); |
|
| 36 | + $this->assertEquals($i::ORANGE, "\x0307"); |
|
| 37 | + $this->assertEquals($i::YELLOW, "\x0308"); |
|
| 38 | + $this->assertEquals($i::LIGHT_GREEN, "\x0309"); |
|
| 39 | + $this->assertEquals($i::CYAN, "\x0310"); |
|
| 40 | + $this->assertEquals($i::LIGHT_CYAN, "\x0311"); |
|
| 41 | + $this->assertEquals($i::BLUE, "\x0312"); |
|
| 42 | + $this->assertEquals($i::VIOLET, "\x0313"); |
|
| 43 | + $this->assertEquals($i::DARK_GREY, "\x0314"); |
|
| 44 | + $this->assertEquals($i::LIGHT_GREY, "\x0315"); |
|
| 45 | 45 | |
| 46 | - $this->assertNotEquals($i::BOLD,"\x021"); |
|
| 47 | - $this->assertNotEquals($i::ITALIC, "\x091"); |
|
| 48 | - $this->assertNotEquals($i::STRIKE, "\x131"); |
|
| 49 | - $this->assertNotEquals($i::UNDERLINE, "\x151"); |
|
| 50 | - $this->assertNotEquals($i::UNDERLINE2, "\x1f1"); |
|
| 51 | - $this->assertNotEquals($i::REVERSE, "\x161"); |
|
| 52 | - $this->assertNotEquals($i::RESET, "\x0f1"); |
|
| 46 | + $this->assertNotEquals($i::BOLD,"\x021"); |
|
| 47 | + $this->assertNotEquals($i::ITALIC, "\x091"); |
|
| 48 | + $this->assertNotEquals($i::STRIKE, "\x131"); |
|
| 49 | + $this->assertNotEquals($i::UNDERLINE, "\x151"); |
|
| 50 | + $this->assertNotEquals($i::UNDERLINE2, "\x1f1"); |
|
| 51 | + $this->assertNotEquals($i::REVERSE, "\x161"); |
|
| 52 | + $this->assertNotEquals($i::RESET, "\x0f1"); |
|
| 53 | 53 | |
| 54 | - $this->assertNotEquals($i::WHITE, "\x03001"); |
|
| 55 | - $this->assertNotEquals($i::BLACK, "\x03011"); |
|
| 56 | - $this->assertNotEquals($i::DARK_BLUE, "\x03021"); |
|
| 57 | - $this->assertNotEquals($i::DARK_GREEN, "\x03031"); |
|
| 58 | - $this->assertNotEquals($i::RED, "\x03041"); |
|
| 59 | - $this->assertNotEquals($i::DARK_RED, "\x03051"); |
|
| 60 | - $this->assertNotEquals($i::DARK_VIOLET, "\x03061"); |
|
| 61 | - $this->assertNotEquals($i::ORANGE, "\x03071"); |
|
| 62 | - $this->assertNotEquals($i::YELLOW, "\x03081"); |
|
| 63 | - $this->assertNotEquals($i::LIGHT_GREEN, "\x03091"); |
|
| 64 | - $this->assertNotEquals($i::CYAN, "\x03101"); |
|
| 65 | - $this->assertNotEquals($i::LIGHT_CYAN, "\x03111"); |
|
| 66 | - $this->assertNotEquals($i::BLUE, "\x03121"); |
|
| 67 | - $this->assertNotEquals($i::VIOLET, "\x03131"); |
|
| 68 | - $this->assertNotEquals($i::DARK_GREY, "\x03141"); |
|
| 69 | - $this->assertNotEquals($i::LIGHT_GREY, "\x03151"); |
|
| 70 | - } |
|
| 54 | + $this->assertNotEquals($i::WHITE, "\x03001"); |
|
| 55 | + $this->assertNotEquals($i::BLACK, "\x03011"); |
|
| 56 | + $this->assertNotEquals($i::DARK_BLUE, "\x03021"); |
|
| 57 | + $this->assertNotEquals($i::DARK_GREEN, "\x03031"); |
|
| 58 | + $this->assertNotEquals($i::RED, "\x03041"); |
|
| 59 | + $this->assertNotEquals($i::DARK_RED, "\x03051"); |
|
| 60 | + $this->assertNotEquals($i::DARK_VIOLET, "\x03061"); |
|
| 61 | + $this->assertNotEquals($i::ORANGE, "\x03071"); |
|
| 62 | + $this->assertNotEquals($i::YELLOW, "\x03081"); |
|
| 63 | + $this->assertNotEquals($i::LIGHT_GREEN, "\x03091"); |
|
| 64 | + $this->assertNotEquals($i::CYAN, "\x03101"); |
|
| 65 | + $this->assertNotEquals($i::LIGHT_CYAN, "\x03111"); |
|
| 66 | + $this->assertNotEquals($i::BLUE, "\x03121"); |
|
| 67 | + $this->assertNotEquals($i::VIOLET, "\x03131"); |
|
| 68 | + $this->assertNotEquals($i::DARK_GREY, "\x03141"); |
|
| 69 | + $this->assertNotEquals($i::LIGHT_GREY, "\x03151"); |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | 72 | } |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | $i = $this->irc; |
| 20 | 20 | |
| 21 | - $this->assertEquals($i::BOLD,"\x02"); |
|
| 21 | + $this->assertEquals($i::BOLD, "\x02"); |
|
| 22 | 22 | $this->assertEquals($i::ITALIC, "\x09"); |
| 23 | 23 | $this->assertEquals($i::STRIKE, "\x13"); |
| 24 | 24 | $this->assertEquals($i::UNDERLINE, "\x15"); |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | $this->assertEquals($i::DARK_GREY, "\x0314"); |
| 44 | 44 | $this->assertEquals($i::LIGHT_GREY, "\x0315"); |
| 45 | 45 | |
| 46 | - $this->assertNotEquals($i::BOLD,"\x021"); |
|
| 46 | + $this->assertNotEquals($i::BOLD, "\x021"); |
|
| 47 | 47 | $this->assertNotEquals($i::ITALIC, "\x091"); |
| 48 | 48 | $this->assertNotEquals($i::STRIKE, "\x131"); |
| 49 | 49 | $this->assertNotEquals($i::UNDERLINE, "\x151"); |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | class StringFunctionsTest extends PHPUnit_Framework_TestCase |
| 4 | 4 | { |
| 5 | - private $e; |
|
| 5 | + private $e; |
|
| 6 | 6 | |
| 7 | 7 | public function setUp() |
| 8 | 8 | { |
@@ -11,38 +11,38 @@ discard block |
||
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | public function tearDown() { |
| 14 | - $this->e = NULL; |
|
| 15 | - } |
|
| 16 | - |
|
| 17 | - public function test_formatAsUsername() { |
|
| 18 | - // Happy path |
|
| 19 | - $this->assertEquals($this->e->formatAsUsername("this"), "This"); |
|
| 20 | - $this->assertEquals($this->e->formatAsUsername("1this"), "1this"); |
|
| 21 | - $this->assertEquals($this->e->formatAsUsername("This"), "This"); |
|
| 22 | - $this->assertEquals($this->e->formatAsUsername("This "), "This"); |
|
| 23 | - $this->assertEquals($this->e->formatAsUsername("This_"), "This"); |
|
| 24 | - |
|
| 25 | - // Sad Path |
|
| 26 | - $this->assertNotEquals($this->e->formatAsUsername("This "), "This "); |
|
| 27 | - $this->assertNotEquals($this->e->formatAsUsername("This_"), "This_"); |
|
| 28 | - $this->assertNotEquals($this->e->formatAsUsername("this"), "this"); |
|
| 29 | - $this->assertNotEquals($this->e->formatAsUsername("1this"), "1This"); |
|
| 30 | - } |
|
| 31 | - |
|
| 32 | - public function test_formatAsEmail() { |
|
| 33 | - $this->assertEquals($this->e->formatAsEmail("[email protected]"), "[email protected]"); |
|
| 34 | - $this->assertEquals($this->e->formatAsEmail("[email protected]"), "[email protected]"); |
|
| 35 | - $this->assertEquals($this->e->formatAsEmail(" [email protected]"), "[email protected]"); |
|
| 36 | - $this->assertEquals($this->e->formatAsEmail("[email protected] "), "[email protected]"); |
|
| 37 | - $this->assertEquals($this->e->formatAsEmail("1this12345 @example.com"), "[email protected]"); |
|
| 38 | - $this->assertEquals($this->e->formatAsEmail("1this12345@ example.com"), "[email protected]"); |
|
| 39 | - |
|
| 40 | - // Sad Path |
|
| 41 | - $this->assertNotEquals($this->e->formatAsEmail(" [email protected]"), " [email protected]"); |
|
| 42 | - $this->assertNotEquals($this->e->formatAsEmail("[email protected] "), "[email protected] "); |
|
| 43 | - $this->assertNotEquals($this->e->formatAsEmail("1this12345 @example.com"), "1this12345 @example.com"); |
|
| 44 | - $this->assertNotEquals($this->e->formatAsEmail("1this12345@ example.com"), "1this12345@ example.com"); |
|
| 45 | - |
|
| 46 | - } |
|
| 14 | + $this->e = NULL; |
|
| 15 | + } |
|
| 16 | + |
|
| 17 | + public function test_formatAsUsername() { |
|
| 18 | + // Happy path |
|
| 19 | + $this->assertEquals($this->e->formatAsUsername("this"), "This"); |
|
| 20 | + $this->assertEquals($this->e->formatAsUsername("1this"), "1this"); |
|
| 21 | + $this->assertEquals($this->e->formatAsUsername("This"), "This"); |
|
| 22 | + $this->assertEquals($this->e->formatAsUsername("This "), "This"); |
|
| 23 | + $this->assertEquals($this->e->formatAsUsername("This_"), "This"); |
|
| 24 | + |
|
| 25 | + // Sad Path |
|
| 26 | + $this->assertNotEquals($this->e->formatAsUsername("This "), "This "); |
|
| 27 | + $this->assertNotEquals($this->e->formatAsUsername("This_"), "This_"); |
|
| 28 | + $this->assertNotEquals($this->e->formatAsUsername("this"), "this"); |
|
| 29 | + $this->assertNotEquals($this->e->formatAsUsername("1this"), "1This"); |
|
| 30 | + } |
|
| 31 | + |
|
| 32 | + public function test_formatAsEmail() { |
|
| 33 | + $this->assertEquals($this->e->formatAsEmail("[email protected]"), "[email protected]"); |
|
| 34 | + $this->assertEquals($this->e->formatAsEmail("[email protected]"), "[email protected]"); |
|
| 35 | + $this->assertEquals($this->e->formatAsEmail(" [email protected]"), "[email protected]"); |
|
| 36 | + $this->assertEquals($this->e->formatAsEmail("[email protected] "), "[email protected]"); |
|
| 37 | + $this->assertEquals($this->e->formatAsEmail("1this12345 @example.com"), "[email protected]"); |
|
| 38 | + $this->assertEquals($this->e->formatAsEmail("1this12345@ example.com"), "[email protected]"); |
|
| 39 | + |
|
| 40 | + // Sad Path |
|
| 41 | + $this->assertNotEquals($this->e->formatAsEmail(" [email protected]"), " [email protected]"); |
|
| 42 | + $this->assertNotEquals($this->e->formatAsEmail("[email protected] "), "[email protected] "); |
|
| 43 | + $this->assertNotEquals($this->e->formatAsEmail("1this12345 @example.com"), "1this12345 @example.com"); |
|
| 44 | + $this->assertNotEquals($this->e->formatAsEmail("1this12345@ example.com"), "1this12345@ example.com"); |
|
| 45 | + |
|
| 46 | + } |
|
| 47 | 47 | |
| 48 | 48 | } |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | class stringsTest extends PHPUnit_Framework_TestCase |
| 4 | 4 | { |
| 5 | - private $e; |
|
| 5 | + private $e; |
|
| 6 | 6 | |
| 7 | 7 | public function setUp() |
| 8 | 8 | { |
@@ -11,38 +11,38 @@ discard block |
||
| 11 | 11 | } |
| 12 | 12 | |
| 13 | 13 | public function tearDown() { |
| 14 | - $this->e = NULL; |
|
| 15 | - } |
|
| 16 | - |
|
| 17 | - public function test_struname() { |
|
| 18 | - // Happy path |
|
| 19 | - $this->assertEquals($this->e->struname("this"), "This"); |
|
| 20 | - $this->assertEquals($this->e->struname("1this"), "1this"); |
|
| 21 | - $this->assertEquals($this->e->struname("This"), "This"); |
|
| 22 | - $this->assertEquals($this->e->struname("This "), "This"); |
|
| 23 | - $this->assertEquals($this->e->struname("This_"), "This"); |
|
| 24 | - |
|
| 25 | - // Sad Path |
|
| 26 | - $this->assertNotEquals($this->e->struname("This "), "This "); |
|
| 27 | - $this->assertNotEquals($this->e->struname("This_"), "This_"); |
|
| 28 | - $this->assertNotEquals($this->e->struname("this"), "this"); |
|
| 29 | - $this->assertNotEquals($this->e->struname("1this"), "1This"); |
|
| 30 | - } |
|
| 31 | - |
|
| 32 | - public function test_stremail() { |
|
| 33 | - $this->assertEquals($this->e->stremail("[email protected]"), "[email protected]"); |
|
| 34 | - $this->assertEquals($this->e->stremail("[email protected]"), "[email protected]"); |
|
| 35 | - $this->assertEquals($this->e->stremail(" [email protected]"), "[email protected]"); |
|
| 36 | - $this->assertEquals($this->e->stremail("[email protected] "), "[email protected]"); |
|
| 37 | - $this->assertEquals($this->e->stremail("1this12345 @example.com"), "[email protected]"); |
|
| 38 | - $this->assertEquals($this->e->stremail("1this12345@ example.com"), "[email protected]"); |
|
| 39 | - |
|
| 40 | - // Sad Path |
|
| 41 | - $this->assertNotEquals($this->e->stremail(" [email protected]"), " [email protected]"); |
|
| 42 | - $this->assertNotEquals($this->e->stremail("[email protected] "), "[email protected] "); |
|
| 43 | - $this->assertNotEquals($this->e->stremail("1this12345 @example.com"), "1this12345 @example.com"); |
|
| 44 | - $this->assertNotEquals($this->e->stremail("1this12345@ example.com"), "1this12345@ example.com"); |
|
| 45 | - |
|
| 46 | - } |
|
| 14 | + $this->e = NULL; |
|
| 15 | + } |
|
| 16 | + |
|
| 17 | + public function test_struname() { |
|
| 18 | + // Happy path |
|
| 19 | + $this->assertEquals($this->e->struname("this"), "This"); |
|
| 20 | + $this->assertEquals($this->e->struname("1this"), "1this"); |
|
| 21 | + $this->assertEquals($this->e->struname("This"), "This"); |
|
| 22 | + $this->assertEquals($this->e->struname("This "), "This"); |
|
| 23 | + $this->assertEquals($this->e->struname("This_"), "This"); |
|
| 24 | + |
|
| 25 | + // Sad Path |
|
| 26 | + $this->assertNotEquals($this->e->struname("This "), "This "); |
|
| 27 | + $this->assertNotEquals($this->e->struname("This_"), "This_"); |
|
| 28 | + $this->assertNotEquals($this->e->struname("this"), "this"); |
|
| 29 | + $this->assertNotEquals($this->e->struname("1this"), "1This"); |
|
| 30 | + } |
|
| 31 | + |
|
| 32 | + public function test_stremail() { |
|
| 33 | + $this->assertEquals($this->e->stremail("[email protected]"), "[email protected]"); |
|
| 34 | + $this->assertEquals($this->e->stremail("[email protected]"), "[email protected]"); |
|
| 35 | + $this->assertEquals($this->e->stremail(" [email protected]"), "[email protected]"); |
|
| 36 | + $this->assertEquals($this->e->stremail("[email protected] "), "[email protected]"); |
|
| 37 | + $this->assertEquals($this->e->stremail("1this12345 @example.com"), "[email protected]"); |
|
| 38 | + $this->assertEquals($this->e->stremail("1this12345@ example.com"), "[email protected]"); |
|
| 39 | + |
|
| 40 | + // Sad Path |
|
| 41 | + $this->assertNotEquals($this->e->stremail(" [email protected]"), " [email protected]"); |
|
| 42 | + $this->assertNotEquals($this->e->stremail("[email protected] "), "[email protected] "); |
|
| 43 | + $this->assertNotEquals($this->e->stremail("1this12345 @example.com"), "1this12345 @example.com"); |
|
| 44 | + $this->assertNotEquals($this->e->stremail("1this12345@ example.com"), "1this12345@ example.com"); |
|
| 45 | + |
|
| 46 | + } |
|
| 47 | 47 | |
| 48 | 48 | } |
@@ -1218,7 +1218,7 @@ discard block |
||
| 1218 | 1218 | if ($gem == 1 && !$exists && !isset($_GET['createoverride'])) { |
| 1219 | 1219 | $alertContent = "<p>You have chosen to mark this request as \"created\", but the account does not exist on the English Wikipedia, proceed?</p><br />"; |
| 1220 | 1220 | $alertContent .= "<div class=\"row-fluid\">"; |
| 1221 | - $alertContent .= "<a class=\"btn btn-success offset3 span3\" href=\"$baseurl/acc.php?" . $_SERVER["QUERY_STRING"] ."&createoverride=yes\">Yes</a>"; |
|
| 1221 | + $alertContent .= "<a class=\"btn btn-success offset3 span3\" href=\"$baseurl/acc.php?" . $_SERVER["QUERY_STRING"] . "&createoverride=yes\">Yes</a>"; |
|
| 1222 | 1222 | $alertContent .= "<a class=\"btn btn-danger span3\" href=\"$baseurl/acc.php\">No</a>"; |
| 1223 | 1223 | $alertContent .= "</div>"; |
| 1224 | 1224 | |
@@ -1286,7 +1286,7 @@ discard block |
||
| 1286 | 1286 | if ($_POST['action'] == EmailTemplate::CREATED || $_POST['action'] == EmailTemplate::NOT_CREATED) { |
| 1287 | 1287 | $request->setStatus('Closed'); |
| 1288 | 1288 | |
| 1289 | - if($_POST['action'] == EmailTemplate::CREATED){ |
|
| 1289 | + if ($_POST['action'] == EmailTemplate::CREATED) { |
|
| 1290 | 1290 | $gem = 'custom-y'; |
| 1291 | 1291 | $crea = "Custom, Created"; |
| 1292 | 1292 | } |
@@ -1311,7 +1311,7 @@ discard block |
||
| 1311 | 1311 | BootstrapSkin::displayAlertBox("Sent mail to Request {$request->getId()}", |
| 1312 | 1312 | "alert-success"); |
| 1313 | 1313 | } |
| 1314 | - else if(array_key_exists($_POST['action'], $availableRequestStates) ) { |
|
| 1314 | + else if (array_key_exists($_POST['action'], $availableRequestStates)) { |
|
| 1315 | 1315 | // Defer |
| 1316 | 1316 | |
| 1317 | 1317 | $request->setStatus($_POST['action']); |
@@ -1345,7 +1345,7 @@ discard block |
||
| 1345 | 1345 | BootstrapSkin::displayInternalFooter(); |
| 1346 | 1346 | die(); |
| 1347 | 1347 | } |
| 1348 | - else{ |
|
| 1348 | + else { |
|
| 1349 | 1349 | // Not a custom close, just a normal close |
| 1350 | 1350 | |
| 1351 | 1351 | $request->setStatus('Closed'); |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | */ |
| 51 | 51 | function isHttps() { |
| 52 | 52 | if (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])) { |
| 53 | - if($_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { |
|
| 53 | + if ($_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { |
|
| 54 | 54 | // Client <=> Proxy is encrypted |
| 55 | 55 | return true; |
| 56 | 56 | } |
@@ -61,12 +61,12 @@ discard block |
||
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | if (isset($_SERVER['HTTPS'])) { |
| 64 | - if($_SERVER['HTTPS'] === 'off') { |
|
| 64 | + if ($_SERVER['HTTPS'] === 'off') { |
|
| 65 | 65 | // ISAPI on IIS breaks the spec. :( |
| 66 | 66 | return false; |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - if($_SERVER['HTTPS'] !== '') { |
|
| 69 | + if ($_SERVER['HTTPS'] !== '') { |
|
| 70 | 70 | // Set to a non-empty value |
| 71 | 71 | return true; |
| 72 | 72 | } |
@@ -261,8 +261,8 @@ |
||
| 261 | 261 | } |
| 262 | 262 | |
| 263 | 263 | if (isset(self::$commentsResults[$this->id])) { |
| 264 | - $this->hasCommentsResolved = true; |
|
| 265 | - return $this->hasComments = self::$commentsResults[$this->id]; |
|
| 264 | + $this->hasCommentsResolved = true; |
|
| 265 | + return $this->hasComments = self::$commentsResults[$this->id]; |
|
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | if ($this->comment != "") { |