diff options
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Helper/ContentProxy.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Helper/ContentProxy.php b/src/Wallabag/CoreBundle/Helper/ContentProxy.php index e4e7fb31..0c971863 100644 --- a/src/Wallabag/CoreBundle/Helper/ContentProxy.php +++ b/src/Wallabag/CoreBundle/Helper/ContentProxy.php | |||
@@ -174,6 +174,10 @@ class ContentProxy | |||
174 | */ | 174 | */ |
175 | private function validateAndSetLanguage($entry, $value) | 175 | private function validateAndSetLanguage($entry, $value) |
176 | { | 176 | { |
177 | // some lang are defined as fr-FR, es-ES. | ||
178 | // replacing - by _ might increase language support | ||
179 | $value = str_replace('-', '_', $value); | ||
180 | |||
177 | $errors = $this->validator->validate( | 181 | $errors = $this->validator->validate( |
178 | $value, | 182 | $value, |
179 | (new LocaleConstraint()) | 183 | (new LocaleConstraint()) |