I have to say that it seems that people at jeema don't pay attention to the forum, bugs and email

. I've never received an answer for the bug I wrote about

. I had to solve the problem all by myself, so I will post the solution here, hoping that someone will find it useful.
The problem with SobiSef seem to be caused by the fact that jeema component has been named 'com_sobi2fecatman'; this is causing some of the queries in /com_sobi2/config.class.php to return incorrect results. These queries are the ones using the LIKE operator as for example:
....`link` LIKE '%com_sobi2%' ....
A quick solution to the problem is to find all sql containing text as <<LIKE ...com_sobi2%>> and change it to avoid overlapping with com_sobi2fecatman. In the example provided above, it could be changed in:
....(`link` LIKE '%com_sobi2' OR `link` LIKE '%com_sobi2&%')....
And all will work as expected.
