* moved characters.php html code to Twig template

* moved news.php to Twig news.html template
* fixed some duplicated code in signature generators
* always check if name parameter is set when generating signatures
This commit is contained in:
slawkens
2017-09-01 17:00:29 +02:00
parent 37502c5562
commit d50fb7a291
14 changed files with 1139 additions and 1093 deletions

View File

@@ -441,7 +441,7 @@ function check_name($name, &$error = '')
return false;
}
return preg_match("/[A-z ']{1,25}/", $name);
return preg_match("/[A-z ']/", $name);
}
/**