Well I just decided to try it and see and got numerous errors upon install.
I had to edit the installer just to get it to work, because I kept getting:
Parse error: parse error, unexpected T_VARIABLE
for lines 231, 318 and 355.
So I changed this:
PHP Code:
<phrase 1='$glossary[version]'>$vbphrase[glossary_copyright]</phrase>
to this (adding periods)
PHP Code:
<phrase 1='.$glossary[version].'>$vbphrase[glossary_copyright]</phrase>
Then the installer seemed to be working, but ran into some problems installing the templates.... Although they apparently did install.
PHP Code:
Warning: strpos(): Offset not contained in string. in /includes/adminfunctions_template.php on line 1929
Created/Updated Template - GLOSSARY
Warning: strpos(): Offset not contained in string. in /includes/adminfunctions_template.php on line 1929
Created/Updated Template - GLOSSARY_CAT
Created/Updated Template - glossary_catlist
Created/Updated Template - glossary_letter
Created/Updated Template - glossary_list
Created/Updated Template - glossary_nodisplay
Warning: strpos(): Offset not contained in string. in /includes/adminfunctions_template.php on line 1929
Created/Updated Template - GLOSSARY_RESULTS
Created/Updated Template - glossary_view
Created/Updated Template - glossary_searchresult
And finally there seems to be a missing
adminfunctions_glossary.php
in the zipfile which is supposed to be uploaded in the includes directory.
Anyone care to help a guy out?