When I am looking to this theme, I see a little square behind your text in the EXIF data (you know, the one you sometimes get when a character isn't available). After model and date. It does the same thing if I install the theme on my gallery. What is that? How can I get rid of it?
I believe that is some extraneous data from the EXIF call, but I was never sure. Anybody care to take a stab at what it might be?
I've been living with it, but it'd be nice to have someone tell me what might be causing it. I thought it had something to do with a newline character, but I could never fix it.
Geert-
I found the solution. Use the trim function in PHP. Example:
//Camera Model
if ($er->ImageInfo[TAG_MAKE]){
$info['model'] = trim($er->ImageInfo[TAG_MODEL]);
}
A good example for using the separate libraries rather than the built in functions is not every person has EXIF capabilities built into their PHP installations. But either way that is more comfortable, it's just making the theme a bit more flexible.
Thinkdreams.
Dingsbums-
I thought about keeping it in, but it was kind of redundant since the album dates really aren't working yet, and the main index page from the stopdesign theme did not much else but show the first 6 galleries. I suppose for anyone who wanted that function they could add it back in. The theme automatically shows only the first 6 albums anyway, and then a nice quick access navigation numbered list to get to the rest.
I didn't want to change the zenphoto architecture too much. That way when you upgrade, you don't have so much work when you replace files in the directory.
Thinkdreams.