I have spotted a bug with JA Purity (Joomla 1.5, JA Purity latest). Joomla “Authors” cannot see the edit icon, therefore they cannot edit their own articles from the front end.
The problem is the following line of code in templatesja_purityhtmlcom_contentarticledefault.php:
[PHP]<?php if ($this->user->authorize(‘com_content’, ‘edit’, ‘content’, ‘all’) && !$this->print) : ?>[/PHP]
should become:
[PHP]<?php if (($this->user->authorize(‘com_content’, ‘edit’, ‘content’, ‘all’) || $this->user->authorize(‘com_content’, ‘edit’, ‘content’, ‘own’)) && !$this->print) : ?>[/PHP]