When I use `` it shows up, but the data that I've entered doesn't line break where I've done so on the administrative end.
Example, if place this data in the custom data field:
[b]Some information
More stuff
ZenPhoto rocks[/b]
It renders like this:
[b]Some informationMore stuffZenPhoto rocks[/b]
Any Suggestions?
I was hoping to avoid html in the admin fields (this will eventually be used by someone not so html-savy).
Why does the Description field (``) render with line breaks where the custom data field doesn't? I looked in the mySQL structure, but could not find a difference between the two (both setup as 'text'). Does telling something to "print" versus "echo" make the difference?
Well, using is not that difficult even for a none html savy person...
The function printAlbumDesc() is setup to replace invisible line breaks with when printed (echo getAlbumDesc() would not do that). Since we don't have a printAlbumCustomData() function I guess we could add that to do the same.
It is NEVER recommended that you update only some files as there may be multiple dependencies. Best you use a file comparison program to see what has changed. Better still is not to modify the zenphoto core files. Usually using theme based custom functions can handle whatever you need. (The first implementation of subalbum image paging was done as a custom function, so I imagine pretty much anything could be done this way.)