Hello,
In Book library you need also check self input field parameters for bookid at time edit book
e.g. in booklibrary free version for admin interface - you need check file:
{yours site}administrator/components/com_booklibrary/admin.booklibrary.html.php
function "editBook"
You will need find code
Code: |
<td width="15%" align="right">
<strong><?php echo _BOOKLIBRARY_LABEL_BOOKID;?>:</strong>
</td>
<td width="85%" align="left">
<input class="inputbox" type="text" name="bookid" id="bookid" size="20" maxlength="20"
|
and replace it to
Code: |
<td width="15%" align="right">
<strong><?php echo _BOOKLIBRARY_LABEL_BOOKID;?>:</strong>
</td>
<td width="85%" align="left">
<input class="inputbox" type="text" name="bookid" id="bookid" size="40" maxlength="100"
|
Thanks,
OrdaSoft team