Code style patch for HEAD attached.
Mostly leading spaces, spaces around '=' and capitalization of NULL, TRUE, FALSE.

I left out replacement of strlen() by drupal_strlen() and other string function replacements for later.

CommentFileSizeAuthor
mimemail.codestyle_HEAD.patch20.94 KBsutharsan

Comments

luti’s picture

Coder (module) still has one complain after applying this patch and Drupal 6 upgrade patch:

Line 344: Parameters of watchdog() changed, you must remove calls to t() (Drupal Docs)
watchdog('access denied', t('Authentication error for POST e-mail'), WATCHDOG_WARNING);

I believe it is just a "cosmetic issue", and line 344 shall be simply:

watchdog('access denied', 'Authentication error for POST e-mail', WATCHDOG_WARNING);
allie micka’s picture

Status: Needs review » Closed (duplicate)