When I use `<?php echo AlbumCustomData(); ?>` 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:
Some information
More stuff
ZenPhoto rocks
It renders like this:
Some informationMore stuffZenPhoto rocks
Any Suggestions?
Comments
` or `` if you want a line break.
Why does the Description field (`<?php printAlbumDesc(); ?>`) 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?
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.
Thanks again.