Typo on signup page

Discussion in 'Troubleshooting' started by Pam1234, May 19, 2006.

  1. Pam1234

    Pam1234 New Member

    Joined:
    Apr 25, 2006
    Messages:
    6
    Wasn't sure where to post this so please move as required. Thanks.

    There is a typo when a person tries to sign up without meeting the prerequisites. Example: "Your Product Name Here" can be ordered along with these products/subscriptons only: "Name of Product"

    The word "subscriptions" is misspelled. To correct, look in product.inc.php and find at line 454:

    Code:
                    if ($titles){
                        $error[] = "\"{$pr[title]}\" can be ordered ".
                               "along with these products/subscriptons only: " . 
                               join(', ', $titles);
                        continue;
    Replace with:

    Code:
                    if ($titles){
                        $error[] = "\"{$pr[title]}\" can be ordered ".
                               "along with these products/subscriptions only: " . 
                               join(', ', $titles);
                        continue;
    I think a language file would be very helpful for correcting things like this.

    Thanks,
    Pam :)
  2. lindab2

    lindab2 New Member

    Joined:
    May 18, 2006
    Messages:
    2
    Agree... Thanks :)
  3. Sergei

    Sergei aMember Pro Customer

    Joined:
    Mar 6, 2006
    Messages:
    96
    Last time I checked they are workign on a localised version which can be released anytime soon?

Share This Page