Morgg
Karma: 0
|
Re:joomla 1.5 and glossary - 2007/11/16 11:04
Hi all,
I just installed Glossary 2.0.2 in a Joomla 1.5 RC3 and I had the same problem as bengim2. After some searching through the code, I found out why the categories don't work.
Actually the component uses the standard Joomla API for categories (com_categories), creating a new section for glossary categories (com_glossary). When you click "Categories" tab, it just redirects you to "index2.php?option=categories§ion=com_glossary". This URL without the "com_" prefix in the option parameter worked in Joomla1.0 but not in 1.5.
The solution is as easy as changing that line (file /administrator/components/com_glossary/admin.glossary.php, line 47) so that it reads like this:
mosRedirect("index2.php?option=com_categories§ion=com_glossary" );
Note the "com_" that was added to the option parameter.
I didn't test it thoroughly but It seems to work.
I Hope it helps...
|