Issue #2084401 by Tharna: Fixed Themes can't contain numbers in name.

8.0.x
Alex Pott 2013-10-03 06:48:22 +01:00
parent ed11cb2b39
commit 63d0273862
1 changed files with 2 additions and 2 deletions

View File

@ -166,8 +166,8 @@ class Breakpoint extends ConfigEntityBase implements BreakpointInterface {
)));
}
// Check for illegal characters in breakpoint source.
if (preg_match('/[^a-z_]+/', $this->source)) {
throw new InvalidBreakpointSourceException(format_string("Invalid value '@source' for breakpoint source property. Breakpoint source property can only contain lowercase letters and underscores.", array('@source' => $this->source)));
if (preg_match('/[^0-9a-z_]+/', $this->source)) {
throw new InvalidBreakpointSourceException(format_string("Invalid value '@source' for breakpoint source property. Breakpoint source property can only contain lowercase alphanumeric characters and underscores.", array('@source' => $this->source)));
}
// Check for illegal characters in breakpoint names.
if (preg_match('/[^0-9a-z_\-]/', $this->name)) {