The solution is posted on this JoomlArt Forum “edit icon for authors does not appear” by mijalis as follows
“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_contentarticledefau lt.php:
PHP Code:
<?php if ($this->user->authorize(‘com_content’, ‘edit’, ‘content’, ‘all’) && !$this->print) : ?>
should become:
PHP Code:
<?php if (($this->user->authorize(‘com_content’, ‘edit’, ‘content’, ‘all’) || $this->user->authorize(‘com_content’, ‘edit’, ‘content’, ‘own’)) && !$this->print) : ?>
I have tested his solution and its fixed the bug. 😀