AbanteCart Community

Shopping Cart Operations => Support => General Support => Topic started by: abestophat on October 16, 2013, 02:33:21 AM

Title: linking bug when adding content pages
Post by: abestophat on October 16, 2013, 02:33:21 AM
I was adding a DEALERS link to the Home page and I found the following bug,

once the page is created in Content it does not show up in the drop down box of the Link to Page (see attached screensave)
however if you choose the blank space and hit SAVE couple of times it eventually shows the link.

Also the content link was not /dealer or =dealer , but for me it was linking as the sort order number (5 in my case)

That's all I got for now.

Title: Re: linking bug when adding content pages
Post by: abantecart on October 16, 2013, 09:38:59 AM
Thank you for this post. We will review
Title: Re: linking bug when adding content pages
Post by: abolabo on October 16, 2013, 10:07:21 AM
to fix you have to replace
Code: [Select]
$options [$c ['content_id']] = $c ['name'];to
Code: [Select]
$options [$c ['content_id']] = $c ['title'];in file public_html/admin/controller/pages/design/menu.php line 375

Thank you.