1
I'm not a pro coder (yet
) so I'm not sure but here's what I found.
In /kernel/configitem.php, in the getConfValueForOutput() function, there is a CASE statement. In that statement, one of the case is 'textarea'. This is weird because in xoops_config table, there is no conf_valuetype that match 'textarea'. I think that the 'textarea' mentionned in the previous function should be changed for 'text'. That is actually a value of conf_valuetype in the above mentionned table.
I found that because I wanted to pass the xoops_footer in the textsanitizer. When I included that in the 'textarea' case, nothing happened. When I changed the 'textarea' to 'text', it worked like a charm !!!
Now, as I said earlier, I'm not a coder, and I'm messing around with the krenel
. So can someone from the core developpement team tell me if I'm right or wrong and if this change will have an impact on something else.
Thanks !