This could be the modifyed part of printTags() function:
`
function printTags($option='links', $preText=NULL, $class='taglist', $separator=', ', $editable=TRUE, $editclass='', $messageIfEmpty = true ) {
global $_zp_current_search, $_zp_current_album ;
$editrgs = isMyAlbum($_zp_current_album->name, EDIT_RIGHTS);
$singletag = getTags();
$tagstring = implode(', ', $singletag);
if ($tagstring === '' or $tagstring === NULL ) {
$preText = '';
if ( $messageIfEmpty === true && $editable && $editrgs ) {
$tagstring = gettext('(No tags...)');
} elseif ( is_string($messageIfEmpty)) {
$tagstring = $messageIfEmpty;
}
}
$object = in_context(ZP_IMAGE) ? 'image' : 'album' ;
if ($editable && $editrgs ) {
printEditable($object, '_update_tags', true, $editclass, $tagstring);
} else {
...
`