Page 1 of 1

Undefined variable problem

Posted: Thu Feb 10, 2011 10:23 am
by mytindahan
I am getting this error during login:

Notice: Undefined variable: text_account in /home/bazaarph/public_html/mytindahan.net/stores/catalog/view/theme/Red-Orange/template/account/login.tpl on line 28

Hope someone can help me sort this problem out...

thanks in advance

Note: i am not a coder but can follow details

Re: Undefined variable problem

Posted: Thu Feb 10, 2011 12:14 pm
by fido-x
In your template file (catalog/view/theme/Red-Orange/template/account/login.tpl) on line 28, change:

Code: Select all

<?php echo $text_account; ?>
to:

Code: Select all

<?php echo $text_register; ?>

Re: Undefined variable problem

Posted: Thu Feb 10, 2011 3:20 pm
by mytindahan
thanks fido.... it works.
I also define $text_register; in the languange folder...