Author Topic: {message} area in postcards.php is a whole string  (Read 4128 times)

0 Members and 1 Guest are viewing this topic.

Offline Slavio

  • Pre-Newbie
  • Posts: 5
    • View Profile
{message} area in postcards.php is a whole string
« on: June 03, 2009, 10:46:44 AM »
HI,
I'm facing following problem:

When anybody try to create a postcard, they have no chance to divide message text into paragraphs, it goes as a whole string.

I've tried to compare all concerning {message} code in postcards.php and {commet_text} in details.php, but unfortunately I couldn't catch why it works fine in comments, whereas in postcards it doesn't.

My script version - 1.7.7

Thanks in advance

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
Re: {message} area in postcards.php is a whole string
« Reply #1 on: June 03, 2009, 04:02:01 PM »
Hello and welcome to 4images forum.

I think it's a little bug in postcard_preview.html template file.
Replace
Code: [Select]
                    <font face="{font_face}" color="{font_color}" size="2">{message_hidden}</font> <br />
With
Code: [Select]
                    <font face="{font_face}" color="{font_color}" size="2">{message}</font> <br />
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline Slavio

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: {message} area in postcards.php is a whole string
« Reply #2 on: June 03, 2009, 05:48:15 PM »
That's it. Thank you very much!