Remove first '-' char when saving tags

This commit is contained in:
ArthurHoaro 2016-02-15 21:06:17 +01:00
parent 21979ff11c
commit ce354bf1a6

View file

@ -1558,6 +1558,8 @@ function renderPage()
} }
// Remove multiple spaces. // Remove multiple spaces.
$tags = trim(preg_replace('/\s\s+/', ' ', $_POST['lf_tags'])); $tags = trim(preg_replace('/\s\s+/', ' ', $_POST['lf_tags']));
// Remove first '-' char in tags.
$tags = preg_replace('/(^| )\-/', '$1', $tags);
// Remove duplicates. // Remove duplicates.
$tags = implode(' ', array_unique(explode(' ', $tags))); $tags = implode(' ', array_unique(explode(' ', $tags)));
$linkdate = $_POST['lf_linkdate']; $linkdate = $_POST['lf_linkdate'];