OK, we are ALL at a loss here. Trying to display an image with image_tag. The path is stored in a sqlite3 varchar(64) field, with quotes around it. The field is called imagepath.
On the show page...
This: <%=@invitem.imagepath%> gives me THIS: "/images/5585L.jpg""
This: <%=image_tag(@invitem.imagepath) %>
gives me THIS: 5585l (note the lower case L)
This: <%=image_tag("/images/6287L.jpg")%> Renders the image I want.
Anybody got a clue? Stuart