Yes its because init_add_crumbs.php has very different code in 1.3.5 compared to 1.3.0
moku's sql had blank field entries for the get_terms_to_filter table, so use the sql below in zc admin sql patch, -- having removed the three moku book-based entries in the get_terms_to_filter table with phpmyadmin..
I used sql here which creates the three recods from scratch, so you may need to create your own 'update/insert' or 'delete first' variant, if you cannot delete the records with phpmyadmin..:
for admin sql patch...
Code:
INSERT INTO get_terms_to_filter (get_term_name, get_term_table, get_term_name_field)
VALUES ('book_genre_id','TABLE_BOOK_GENRE_DESCRIPTION','book_genre_name');
INSERT INTO get_terms_to_filter (get_term_name, get_term_table, get_term_name_field)
VALUES ('book_type_id','TABLE_BOOK_TYPE_DESCRIPTION','book_type_name');
INSERT INTO get_terms_to_filter (get_term_name, get_term_table, get_term_name_field)
VALUES ('book_authors_id','TABLE_BOOK_AUTHORS','book_authors_name');
It clears the php error, someone needs to test it, I've only got one book in my database, searches mean nothing, with only one book available :)
Bookmarks