1
Can someone tell me why when I try to insert a table in a text box (body of news) the XOOPS insert a br tag at the end of every line.
For example when I insert this table
le="color: #000000"><?php <table> <tr> <td>asasasasasasas</td> </tr> <tr> <td>asasasasasasas</td> </tr> <tr> <td>asasasasasasas</td> </tr> <tr> <td>asasasasasasas</td> </tr> </table>
and the browser renders this
le="color: #000000"><?php <table><br /> <tr><br /> <td>asasasasasasas</td><br /> </tr><br /> <tr><br /> <td>asasasasasasas</td><br /> </tr><br /> <tr><br /> <td>asasasasasasas</td><br /> </tr><br /> <tr><br /> <td>asasasasasasas</td><br /> </tr><br /> </table>
Tanks