We have 151 guests and 4 members online
OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Apostrophe In Title (1 viewing) (1) Guest
BookLibary Component Support
Go to bottom Favoured: 2
TOPIC: Apostrophe In Title
#775
MyCatsHeaven (User)
Junior Boarder
Posts: 24
graphgraph
User Offline Click here to see the profile of this user
Apostrophe In Title 2 Years ago Karma: 1  
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/15 19:52 By MyCatsHeaven.
  The administrator has disabled public write access.
#779
admin (Admin)
Admin
Posts: 1676
graph
User Offline Click here to see the profile of this user
Re:Apostrophe In Title 2 Years ago Karma: 17  
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