I have not been able to replicate this myself but there are multiple reports on the forum.
Basically when creating a new article or category the access is being set to Guest and not public.
See http://forum.joomla.org/viewtopic.php?f=706&t=890720&p=3314030#p3314030
I confirm the issue for New article and New category. Nothing selected in Search Tools.
Commenting out that line seems to fix the isse:
$data->set('access', $app->input->getInt('access', (isset($filters['access']) ? $filters['access'] : null)));
in /administrator/components/com_content/models/article.php
To reproduce change the default access level to something else.
The problem is that that PR set the property to null
. It should probably instead set it to JFactory::getConfig()->get('access')
similar to what JTable does: https://github.com/joomla/joomla-cms/blob/staging/libraries/joomla/table/table.php#L182-L186.
Or just leave it alone and let JTable handle it.
I think it would be best to remove that line all together.
Otherwise this would fix it:
$data->set('access', $app->input->getInt('access', ((isset($filters['access']) && $filters['access'] != '') ? $filters['access'] : JFactory::getConfig()->get('access'))));
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-07-02 08:14:47 |
Closed_By | ⇒ | Bakual |
Anche creando nuovo modulo html l'accesso risulta solo per guest
PS: this concerns the default access level, not user group.
This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/7311.