Hello Nancy,
In all last versions BookLibrary that already corrected.
All other owners BookLibrary need find code
Code: |
if(get_magic_quotes_gpc()) {
$book->comment = stripslashes($book->comment);
}
|
and change it to
Code: |
if(get_magic_quotes_gpc()) {
$book->comment = stripslashes($book->comment);
$book->title = stripslashes($book->title);
}
|
For Book Library Basic that need do in file admin.booklibrary.php
For Book Library Pro and Shop that need do in files admin.booklibrary.php and booklibrary.php
Thanks,
OrdaSoft team