Topic: quoting problem in manufacturing/inquiry/where_used_inquiry.php

When I run a where used query I see:

GRIT-12 - 12quot; Grit Kit

when it should say

GRIT-12 - 12" Grit Kit

HTML

<tr class='evenrow'>
<td ><a href='../../manufacturing/manage/bom_edit.php?stock_id=GRIT-12' accesskey='Q'>GRIT-12 - 12<u>q</u>uot; Grit Kit</a></td>
<td >Garage</td>
<td >Default</td>
<td >1</td>

This is because the short cut key syntax uses &,

Maybe before checking for the & the code should urldecode the string and then re-urlencode the string?

I looked around in the code, but got a bit lost...
I am sure you know right where to go...

tom

Re: quoting problem in manufacturing/inquiry/where_used_inquiry.php

Yes, this is a problem. Here is conflict between two meanings of ampersand. First it is used to quote special chars in database, second it can be used as hotkey prefix. At first glance I think we could remove the access_string call in pager_link function without harm, but I'm not sure now. Please report this issue on mantis to be fixed asap.

Janusz