Most of the *.php files in the nokia_mobile/ directory do not have $Id$ tags for CVS. I think only template.php and theme-settings.php have it.

Several files, such as page.tpl.php, are indented with tabs. The Drupal coding standards call for two spaces. See http://drupal.org/coding-standards#indenting .

If you use vim, then you can re-indent a bunch of files at once.

$ vim *.php *.css
:argdo set ts=2 et | retab | update
:q

If you want to be really old-school, you can use sed.

Comments

aspilicious’s picture

Luckily you can leave the $id tags out now :)