You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ISBN 3464603520 gives 11 as checksum. I checked your link. It is iinteresting that de.wikipedia.org and en.wikipedia.org have different calculations. Based on the English version you are missing one modulo and the calculation has to be
Thanks for the great work.
I found that the checksum calculation for ISBN-10 seems to be wrong. Line 285 should be
$sum = (($c[0] * 1) + ($c[1] * 2) + ($c[2] * 3) + ($c[3] * 4) + ($c[4] * 5) + ($c[5] * 6) + ($c[6] * 7) + ($c[7] * 8) + ($c[8] * 9)) % 11;
Best regards,
Christian
The text was updated successfully, but these errors were encountered: