https://bugs.koozali.org/show_bug.cgi?id=12163
Jean-Philippe Pialasse <[email protected]> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |CONFIRMED
CC| |[email protected]
Ever confirmed|0 |1
--- Comment #1 from Jean-Philippe Pialasse <[email protected]> ---
/usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/git.pm
#----------------------------------------------------------------------
# git_repository_validate_name()
#
# Checks that the name supplied does not contain any unacceptable chars.
# Returns OK on success or a localised error message otherwise.
sub git_repository_validate_name
{
my( $self, $repositoryName ) = @_;
- unless( $repositoryName =~ /^([A-Za-z][\_\-A-Za-z0-9]*)$/ ) {
+ unless( $repositoryName =~ /^([A-Za-z][.\_\-A-Za-z0-9]*)$/ ) {
return $self->localise('GIT_ERROR_NAME_HAS_INVALID_CHARS',
{repositoryName => $repositoryName});
}
return "OK";
}
--
You are receiving this mail because:
You are on the CC list for the bug._______________________________________________
Mail for each SME Contribs bug report
To unsubscribe, e-mail [email protected]
Searchable archive at https://lists.contribs.org/mailman/public/contribteam/