I have a small problem with apostrophes showing as code in titles.
Can you help me with that issue please.
Thank you

I cannot reproduce the issue because the site is online but you can view this page
http://www.artsetculturestplacide.com/photos/trio-j%C3%A9r%C3%B4me-beaul...

and notice that in the title
l église
there should be an apostrophe between the l and eglise but because it shows as code instead I include a space.

CommentFileSizeAuthor
#5 Hover Text Bug.jpg49.58 KBonduhray
#1 devantEglise.png167.28 KBmichelepotvin

Comments

michelepotvin’s picture

StatusFileSize
new167.28 KB
acouch’s picture

I can't reproduce this. How is the title being generated? Is it the node title or something else?

acouch’s picture

Status: Active » Postponed (maintainer needs more info)
michelle’s picture

I don't know anything about this module in specific but I thought I'd mention that apostrophes showing up encoded is generally a result of being run through check_plain twice.

Michelle

onduhray’s picture

Version: 6.x-1.1 » 7.x-1.1
Priority: Major » Normal
Status: Postponed (maintainer needs more info) » Needs review
StatusFileSize
new49.58 KB

I am also having this issue, this time in Drupal 7. My issue seems to be in the Hover Text that is generated. This only started occurring when my client put an apostrophe in the Title. This also appears on the thumbnails that are generated too. As a side request, is there any way to allow a space in the Hover Text, so instead of "Elaine'sWaves" its "Elaine's Waves". The apostrophe issue is more important though.

Let me know if you need more info. Thanks!

onduhray’s picture

I just noticed that the "History" link also has the code. ex: "gallery#Elaine&039;sWaves"

sounds like the title parsing. Found this in the .module code, might be as simple as adding something to this?

line 107 of views_galleriffic.module

// Slideshow can break if there are spaces or '#' in the title.
        $vars['fields']['title']->stripped = str_replace('#', '', str_replace(' ', '', strip_tags($vars['fields']['title_field']->content)));