You are here

function isbn_validate_10 in ISBN Field 6

File

./isbn.module, line 65
Defines ISBN field types.

Code

function isbn_validate_10($number) {
  return array(
    'valid' => ISN_checksum_OK($number, ISBN_10_DIGIT),
  );
}