Posted by kalle on November 3, 2008 at 8:12pm
Jump to:
| Project: | Book Post |
| Version: | 6.x-1.2-beta1 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
On row 90 in bookpost.module,v 1.1 2008/10/07 14:53:34 there are the following lines.
//clean ISBN of dashes and spaces$isbn = str_replace("-", "", $isbn);$isbn = str_replace("-", "", $isbn); => Dashes again?
Shouldn't the second replace be:$isbn = str_replace(" ", "", $isbn); => Remove spaces.
Or am I not understanding the code?
When writing {{0800636 99 6}} the book information is not fetched.
/Carl
Comments
#1
Thanks kalle, I missed that typo. I've committed the fix.
#2
Automatically closed -- issue fixed for two weeks with no activity.