hello
the commentform allows to comment photos, albums, news or pages.
For personnal use (whith my theme herited from zpGalleriffic) I modified the function printCommentForm in commentform.php like that :
line 314 :
`
function printCommentForm($showcomments=true, $addcommenttext=NULL, $showcommentmsg=true)
`
[note] : the addcomment parameter is not described yet in the user guide
line 351
`
case 0:
if ($showcommentmsg) {echo ''.gettext('No Comments').'';}
`
line 355
`
default:
if ($showcommentmsg) {echo ''.sprintf(ngettext('%u Comment','%u Comments',$num), $num).'';}
`
line 466
`
if (!empty($addcommenttext)) {
if ($showcommentmsg) {echo ''.$addcommenttext.'';}
}
`
those modifications allow the user to show or not some messages of the plugin
could you take this improvement in the zenphoto's core ?
it would be cool !