Downloads
Download tar.gz
55.75 KB
MD5: 96410632e3215850f7521761ec1e9c69
SHA-1: c6d0106e677f878a85d0afcb0e781ca6b3c3cc2e
SHA-256: a5cf534edcaee5c8b12138af2542ac70c0832f241157682792db9f67e3409b72
Download zip
66.59 KB
MD5: e1f42f4f9e4a97b9e801658904203fac
SHA-1: 771fe33a7ec239864e0c6608d41fbc9d3afdb128
SHA-256: 54ab7439e40b3d85ae2a1e3d36152e835145a08dd9d5775bc918ec7ae2114cbd
Release notes
Another "way" overdue release. This "might" be the final 5.x release...
Changes since DRUPAL-5--2-7:
- Added back in the trailing spaces to the test line that is there to be flagged
during reviews. - #223162 - arguments to form prerender functions changed in D6
- #222425 - coder wasn't checking for instances of "CREATE TABLE" and "DROP TABLE"
- the new schema API should be used instead. - #223877 - parameters to user_authenticate() changed in D6
- #223892 - parameters to hook_access() changed in D6
- #224970 - fixed issue with detecting file_save_upload() parameter change
- #223908 - added in check for menu_get_object() change
- #226403 - add a simple help to the admin/settings/coder page
- #226403 - add a simple help to the admin/settings/coder page - slight change to the text
- #212388 by webchick - review .test files
- #212388 - remove processing of .schema files
- #212388 - restore processing of .schema files
- #212400 - better $Id$ checks
- fix $Id$ rule
- add support for drush
- fix include of coder.drush.inc
- add severity settings to drush command line, add drush command line help
- #225831 by Freso - add links to a couple fapi warnings
- show errors/status messages in drush
- implement summary option for drush
- change drush ignore syntax
- add check for missing modules, standardize theme_cols
- remove author attribution (see http://www.youtube.com/watch?v=ZSFDm3UYkeE)
- #231621 - fix check for vars in sql
- #223168 - added check/test for form submit functions returning values.
- #257499 - fix for false positive on db placeholders
- #226965 - added patch for checking for translation directory change, original
patch by Doug. - #212804 - coder now checks for @file blocks.
- #212407 - added in test for proper hook_X doxygen formatting.
- #212405 - added in rule/test for t() usage on menu items' titles and
descriptions. - #241886 - fix for concatenation false positive for (.01) type usage.
- #188975 - patch to alert on usage of back ticks in SQL code, which isn't
compatible with all dbs. - #179270 - added check for unquoted %s placeholders in sql queries
- #257956 - added in coder_47 rule regarding substr vs drupal_substr, etc, to
coding standards. - #222672 - added in Doug's patch to allow coder run the trailing space check on
blank lines. - #180226 - added Doug's patch for warning about accessing array elements without
the quotes. - The Drupal coding standards (http://drupal.org/coding-standards) says that all
pre-defined PHP constants (e.g. null, true, false) should be in uppercase. I've
added a check for this to coder_style.inc and fixed instances of it in the coder
code. - #272903 - fix for warning on using db placeholders - was appearing for all sql
queries, but it should only be applied to db_query() ones, not update_sql(). - added db_query_range() into list of functions that db_query placeholders should
be used with. - add check in menu system based on DrupalCon talk by chx and pwolanin