Skip to content

Instantly share code, notes, and snippets.

@voxpelli
Created October 21, 2009 21:14
Show Gist options
  • Save voxpelli/215457 to your computer and use it in GitHub Desktop.
Save voxpelli/215457 to your computer and use it in GitHub Desktop.
<?php
/**
* Implementation of hook_nodeapi().
*/
function foobar_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
switch ($op) {
case 'presave':
$node->language = '';
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment