diff options
author | Thomas Citharel <tcit@tcit.fr> | 2015-01-20 00:02:21 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2015-01-20 00:02:21 +0100 |
commit | 9a490ad63a08c619bb45ad9bf090790c31ebe92e (patch) | |
tree | 5aa6978d736ee6df694f9024fc366c994598966b /inc/poche | |
parent | fa921eac006920bf367fa88320101f233fabee1e (diff) | |
download | wallabag-9a490ad63a08c619bb45ad9bf090790c31ebe92e.tar.gz wallabag-9a490ad63a08c619bb45ad9bf090790c31ebe92e.tar.zst wallabag-9a490ad63a08c619bb45ad9bf090790c31ebe92e.zip |
from spaces to commas
Diffstat (limited to 'inc/poche')
-rwxr-xr-x | inc/poche/Poche.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index 5a0edbe4..81a18c86 100755 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -664,7 +664,7 @@ class Poche | |||
664 | $urlsInserted[] = $url; //add | 664 | $urlsInserted[] = $url; //add |
665 | if (isset($record['tags']) && trim($record['tags'])) { | 665 | if (isset($record['tags']) && trim($record['tags'])) { |
666 | 666 | ||
667 | $tags = explode(' ', $record['tags']); | 667 | $tags = explode(',', $record['tags']); |
668 | foreach($tags as $tag) { | 668 | foreach($tags as $tag) { |
669 | $entry_id = $id; | 669 | $entry_id = $id; |
670 | $tag_id = $this->store->retrieveTagByValue($tag); | 670 | $tag_id = $this->store->retrieveTagByValue($tag); |