Merge pull request #3953 from alcohol/allow-numeric-author-name
Allow numeric author namepull/3962/head
commit
35a9b5dbf9
|
@ -40,7 +40,7 @@ class InitCommand extends Command
|
|||
|
||||
public function parseAuthorString($author)
|
||||
{
|
||||
if (preg_match('/^(?P<name>[- \.,\p{L}\'’]+) <(?P<email>.+?)>$/u', $author, $match)) {
|
||||
if (preg_match('/^(?P<name>[- \.,\p{L}\p{N}\'’]+) <(?P<email>.+?)>$/u', $author, $match)) {
|
||||
if ($this->isValidEmail($match['email'])) {
|
||||
return array(
|
||||
'name' => trim($match['name']),
|
||||
|
|
|
@ -33,6 +33,14 @@ class InitCommandTest extends TestCase
|
|||
$this->assertEquals('matti@example.com', $author['email']);
|
||||
}
|
||||
|
||||
public function testParseNumericAuthorString()
|
||||
{
|
||||
$command = new InitCommand;
|
||||
$author = $command->parseAuthorString('h4x0r <h4x@example.com>');
|
||||
$this->assertEquals('h4x0r', $author['name']);
|
||||
$this->assertEquals('h4x@example.com', $author['email']);
|
||||
}
|
||||
|
||||
public function testParseEmptyAuthorString()
|
||||
{
|
||||
$command = new InitCommand;
|
||||
|
|
Loading…
Reference in New Issue