Remove first '-' char when saving tags

This commit is contained in:
ArthurHoaro 2016-02-15 21:06:17 +01:00
parent 21979ff11c
commit ce354bf1a6
1 changed files with 2 additions and 0 deletions

View File

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