Log in

View Full Version : How do I make a phrase available in a custom page ?


mihai11
07-20-2007, 09:56 AM
For example, in my custom page I use 2 phrases:

$vbphrase[activate_your_account]
$vbphrase[reset_fields]

The first phrase is available, while the second one is not. What do I need to include in my script so that the first phrase becomes available also ?

I don't really need the first phrase … this is just as an example. I am planning to define my own phrases and I need to know what I should do to have them available in my scripts.

Regards,
Razvan M.

Marco van Herwaarden
07-20-2007, 10:09 AM
You will need to add the phrasegroup the phrase is in to the $phrasegroups array in your scipt.

mihai11
07-20-2007, 12:08 PM
You will need to add the phrasegroup the phrase is in to the $phrasegroups array in your scipt.

I understand. Something like this:

$phrasegroups = array('forumdisplay', 'inlinemod');



Thank you !