OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?

BookLibary Component Support

Go to bottom Favoured: 2

Apostrophe In Title

MyCatsHeaven (Visitor)
Posts: 0
graphgraph
User Offline
Apostrophe In Title 13 Years, 10 Months ago
Karma: 0  
Hello BL!
How do we include apostrophes in the the title. Here's an example (please see Title and Book Id: Call Number)
www.standrewsv.org/parish-online-catalog...=29793&catid=191

Thanks, Nancy
Logged Logged
Last Edit: 2010/05/16 00:52 By .
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:Apostrophe In Title 13 Years, 10 Months ago
Karma: 101  
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
Logged Logged
The administrator has disabled public write access.
Go to top
»