drupalcode.com
Search Drupal 5
Function, file, or topic:
*
Drupal 5
Constants
Files
Functions
Topics
User login
Username:
*
Password:
*
Create new account
Request new password
Navigation
API reference
Code review
Home
Code review (contact)
Selection Form
Default
Active
Core
Coder found 1 projects, 2 files
Coder provides helpful hints without false positives, but offers no guarantee for creating good code. You are the final arbitrar. If in doubt, read the Drupal documentation (see review links below and
api.drupal.org
).
Use the Selection Form to select options for this code review, or change the
Default Settings
and use the
Default
tab above.
Selection Form
Reviews
Converting 4.6.x modules to 4.7.x
Converting 4.7.x modules to 5.x
Converting 5.x modules to 6.x
Drupal Coding Standards
(every developer should use)
Drupal Commenting Standards
(every developer should use)
Drupal SQL Standards (new review, so use with caution)
Drupal Security Checks
(very basic, needs work, but what it finds is good)
apply the checked coding reviews
minor (most)
normal
critical (fewest)
show warnings at or above the severity warning level
What to review
active modules and themes
core files (php, modules, and includes)
include files (.inc and .php files)
Select Specific Modules
aggregator (core)
googleanalytics (active)
taxonomy (active) (core)
api (active)
help (active) (core)
throttle (core)
block (active) (core)
legacy
tracker (core)
blog (core)
locale (core)
upload (core)
blogapi (core)
menu (active) (core)
user (active) (core)
book (core)
node (active) (core)
watchdog (active)
coder (active)
path (active) (core)
xmlsitemap (active)
color (active) (core)
ping (core)
xmlsitemap_engines (active)
comment (active) (core)
poll (core)
xmlsitemap_node (active)
contact (core)
profile (core)
xmlsitemap_term (active)
drupal (core)
search (core)
xmlsitemap_user (active)
filter (active) (core)
statistics (active) (core)
forum (core)
system (active) (core)
Select Specific Themes
bluemarine (core)
garland (active) (core)
minnelli (core)
chameleon (core)
marvin (core)
pushbutton (core)
modules/contact/contact.module
contact.module
Line 30: Control statements should have one space between the control keyword and opening parenthesis
return($output);
Line 230: Arrays should be formatted with a space separating each element and assignment operator
foreach ($recipients as $key=>$recipient) {
Line 550: Control statements should have one space between the control keyword and opening parenthesis
return('');
modules/contact/contact.install
contact.install
No Problems Found