I found a strange bug
some links from the group category listing map end up in error 404
I am in
/en/category/for-rent/
and click on a link on the map
the following link gets generated:
/en/category/index.php?option=com_realestatemanager&task=view&id=3&catid=46&Itemid=129
with error 404
some house objects with different id work though
If I manually change the link to
/en/category/for-rent/index.php?option=com_realestatemanager&task=view&id=3&catid=46&Itemid=129
or
/index.php?option=com_realestatemanager&task=view&id=3&catid=46&Itemid=129
it works though
I also found a workaround I wanted to share:
I changed
/joomla/components/com_realestatemanager/realestatemanager.html.php
from
Code: |
window.open("index.php?option=com_realestatemanager&task=view&id=<?php echo $rows[$i]->id; ?>&catid=<?php echo $rows[$i]->idcat ?>&Itemid=<?php echo $Itemid;?>");
|
to
Code: |
window.open("/index.php?option=com_realestatemanager&task=view&id=<?php echo $rows[$i]->id; ?>&catid=<?php echo $rows[$i]->idcat ?>&Itemid=<?php echo $Itemid;?>","_self");
|
it fixed the problem
the ,"_self" opens the link in same window, if you like to open it in new window, just let it out.
hope its helpful for someone or a proper fixed can be found in future versions.