This was causing a huge number of errors in my apache/plesk error logs.
In the file indicated on the line indicated (in my case /gk_postnote/html/modules.php on line 19) add an "@" to the $attrib at the above line :
<div class="moduletable<?php echo $params->get('moduleclass_sfx'); ?><?php echo @$attribs['additional_class']; ?>">
This should tell the server not to populate the 'additional_class' if it is empty. As indicated here:
http://php.net/manual/en/language.operators.php
At any rate it has removed hundreds of errors an hour in my logs.
C