- Posts: 62
- Thank you received: 0
BE Display Issue when filtering.....
15 years 4 months ago - 15 years 4 months ago #16609
by TheEdge
BE Display Issue when filtering..... was created by TheEdge
Last edit: 15 years 4 months ago by TheEdge.
Please Log in or Create an account to join the conversation.
15 years 4 months ago #16623
by nicolas
Replied by nicolas on topic Re: BE Display Issue when filtering.....
Hi,
Thanks for the bug report
You need you edit the file "listing" of the view "view" via the menu Display->Views for your back template and change the lines:
<a href="<?php echo JRoute::_('index.php?option=com_templates&task=edit&cid[]='.$row->template.'&client='.$row->client_id); ?>">
and:
<a href="<?php echo hikashop::completeLink('view&task=edit&id='.$row->id);?>">
to:
<a href="<?php echo JRoute::_('index.php?option=com_templates&task=edit&cid[]='.strip_tags($row->template).'&client='.$row->client_id); ?>">
and:
<a href="<?php echo hikashop::completeLink('view&task=edit&id='.strip_tags($row->id));?>">
And that will fix it.
Thanks for the bug report
You need you edit the file "listing" of the view "view" via the menu Display->Views for your back template and change the lines:
<a href="<?php echo JRoute::_('index.php?option=com_templates&task=edit&cid[]='.$row->template.'&client='.$row->client_id); ?>">
and:
<a href="<?php echo hikashop::completeLink('view&task=edit&id='.$row->id);?>">
to:
<a href="<?php echo JRoute::_('index.php?option=com_templates&task=edit&cid[]='.strip_tags($row->template).'&client='.$row->client_id); ?>">
and:
<a href="<?php echo hikashop::completeLink('view&task=edit&id='.strip_tags($row->id));?>">
And that will fix it.
Please Log in or Create an account to join the conversation.
15 years 4 months ago #16624
by nicolas
Replied by nicolas on topic Re: BE Display Issue when filtering.....
We'll add that modification to the next release.
Please Log in or Create an account to join the conversation.
Time to create page: 0.144 seconds