Install a fresh version of Joomla 3.4.0 with english sample data.
In administration create some new tags without a parent tag (i.e. apples, pears).
Create a new article and look the list of tags
The tags showed are all parent, there are no sub-tags:
Joomla
Apples
Pears
The Joomla tag that was created by exemple data is the parent and all others are showed as sub-tags:
Joomla
Joomla/Apples
Joomla/Pears
Joomla 3.4.0 with englis sample data
Labels |
Added:
?
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-03-01 10:48:11 |
Closed_By | ⇒ | brianteeman |
See #6241
Confirmed.
During the installation process of Joomla! all SQL commands in installation/sql/mysql/joomla.sql will processed, among others this one:
This creates the ROOT entry in the nested sets table for Tags.
When installing now the sample data of installation/sql/mysql/sample_data.sql we find, among others, the following SQL command:
As the ROOT entry has already been created its insertion will be ignored without throwing an error.
Unfortunately now the
lft
,rgt
values of the two data sets are not consistent after that and exactly this leads to the problem you described.The solution for that is just to truncate the tags table before inserting the sample data means
Opened pull request #6241 with a fix.