Impove tag comma parsing
This commit is contained in:
@@ -119,8 +119,7 @@ class DashComponentController extends Controller
|
|||||||
}
|
}
|
||||||
|
|
||||||
// The component was added successfully, so now let's deal with the tags.
|
// The component was added successfully, so now let's deal with the tags.
|
||||||
$tags = str_replace(', ', ',', $tags); // Clean up.
|
$tags = preg_split('/ ?, ?/', $tags);
|
||||||
$tags = explode(',', $tags);
|
|
||||||
|
|
||||||
// For every tag, do we need to create it?
|
// For every tag, do we need to create it?
|
||||||
$componentTags = array_map(function ($taggable) use ($component) {
|
$componentTags = array_map(function ($taggable) use ($component) {
|
||||||
@@ -179,8 +178,7 @@ class DashComponentController extends Controller
|
|||||||
}
|
}
|
||||||
|
|
||||||
// The component was added successfully, so now let's deal with the tags.
|
// The component was added successfully, so now let's deal with the tags.
|
||||||
$tags = str_replace(', ', ',', $tags); // Clean up.
|
$tags = preg_split('/ ?, ?/', $tags);
|
||||||
$tags = explode(',', $tags);
|
|
||||||
|
|
||||||
// For every tag, do we need to create it?
|
// For every tag, do we need to create it?
|
||||||
$componentTags = array_map(function ($taggable) use ($component) {
|
$componentTags = array_map(function ($taggable) use ($component) {
|
||||||
|
|||||||
Reference in New Issue
Block a user