Skip to content

Commit

Permalink
Fix converting foldernames to tags during import.
Browse files Browse the repository at this point in the history
Conflicts:
	trean/lib/Data/Json.php
  • Loading branch information
mrubinsk authored and yunosh committed Jul 8, 2014
1 parent decb9a6 commit 56dc53c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trean/lib/Data/Json.php
Expand Up @@ -68,7 +68,7 @@ protected function _parseBookmarks($data, $container = null)
}
}
}
$tags = !empty($child->tags) ? explode(',', $child->tags) : array();
$tags = array();
$current_parent = $container->parent;
while (!empty($current_parent)) {
if (!empty($this->_tagMap[$current_parent])) {
Expand Down

0 comments on commit 56dc53c

Please sign in to comment.