argosback / bnpanel

Automatically exported from code.google.com/p/bnpanel
Other
0 stars 0 forks source link

Several bugs #3

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago

Only letters in city:
My City is : Berkel-Enschot

Tax ID (VAT):
NL1504.06.733.B02
Only saves:
NL1504.06.7

Client Area:
Invoices
Missing field : User

----->
New order email sent to "Staff Accounts" email adress
[ProWebService] Order Waiting for Validation
Dear %USERNAME%,

Order #%ORDER_ID% waiting for validation.
-----<

Look and Feel -> NavBar Editor
/bnpanel/admin/?page=lof&sub=navedit
it does save the order and edits.
but is not show in menu the correct order nor the correct name
Only after logoff, changes are visible

----->
Order Form -> Logout
Logout = wrong adress, when using a directory to install it in to
http://www.prowebservice.nl/client/?page=logout

Order Form -> klicking Username
Username = wrong adress, when using a directory to install it in to

IN: /Order/index.php
CHANGE:    $array['WELCOME_MESSAGE'] = 'Signed in as <a 
href="/client">'.$user_info['user'].'</a> | <a 
href="/client/?page=logout">Logout</a>';
TO:        $array['WELCOME_MESSAGE'] = 'Signed in as <a 
href="'.URL.'client">'.$user_info['user'].'</a> | <a 
href="'.URL.'client/?page=logout">Logout</a>';
-----<

----->
Order Form -> Login (after login as tester12 the text is missing a space)
Logged in astester12
Hit F5 and its:
Signed in as tester12

IN: /bnpanel/includes/ajax.php
CHANGE:            echo _('Logged in as').'<a 
href="'.URL.'client">'.$user_info['user'].'</a> | <a 
href="'.URL.'client/?page=logout">'._('Logout').'</a>';
TO:            echo _('Logged in as ').'<a 
href="'.URL.'client">'.$user_info['user'].'</a> | <a 
href="'.URL.'client/?page=logout">'._('Logout').'</a>';
<-----

Original issue reported on code.google.com by gugli...@gmail.com on 3 Mar 2011 at 5:35