4
Quote:
trabis wrote:
If you look in liaise/admin/footer.php you will see that liaise is expecting to find XOOPS 2.0.9 (at least in liase 1.23)
Interesting..... in Liaise v1.26, line 42 of footer.php says:
$version_check = preg_match('/2.0.[9|10|11|12|13]/', XOOPS_VERSION);
Interestingly, it works fine with XOOPS 2.0.18.2.
Presumably, changing the code to something like that below would sort out the Admin message?:
$version_check = preg_match('/2.3.[0|1|2|3|4]/', XOOPS_VERSION);
What about the template issue, though?