If you want others to use your module you should care about E_ALL Compliance and fix the PHP notices.

to see the problems change line 580 in includes/common.inc
from

  if ($errno & (E_ALL ^ E_NOTICE)) {

to

  if ($errno & (E_ALL)) {