kushal275 Posted June 25, 2013 Share Posted June 25, 2013 (edited) Hi guys, i am not a coder , but know some basics, i am using elgg(opensource social network) in my project work, i am facing some problem, please help guys, elgg usess htmLAWED for security reason, so dont want to disable it, but want to modify it, i want to allow only table tags and its class, please go through the below example/problem i am facing, In editor i pasted this code and saved it. INPUT CODE : <table class="ttmarkcust" width="499" height="233" border="0" > <tr> <td class="tttimage" width="266" rowspan="2"><img src="#" width="243" height="100" /></td> <td class="tttprice" width="110" height="60">Rs.999/-</td> <td class="tttdiscount" width="101">75% OFF!</td> </tr> <tr> <td class="tttcoupons" height="66" colspan="2">SUPERHOTDEAL</td> </tr> <tr> <td class="tttvo"> <a href="#"><img src="#" width="150" height="42" /></a></td> <td class="tttbn" colspan="2"><a href="#"><img src="#" width="150" height="42" /></a> <br /></td> </tr> </table> When i click the post again and clicked Edit then SHOW SOURCE in editor i am seeing these codes: its filtering the code OUTPUT CODE: <table width="499" border="0"> <tr> <td width="266" rowspan="2"><img src="#" width="243" height="100" alt="image"></td> <td width="110" height="60">Rs.999/-</td> <td width="101">75% OFF!</td> </tr> <tr> <td height="66" colspan="2">SUPERHOTDEAL</td> </tr> <tr> <td> <a href="#"><img src="#" width="150" height="42" alt="image"></a></td> <td colspan="2"><a href="#"><img src="#" width="150" height="42" alt="image"></a> <br></td> </tr> </table> this is the htmLAWED file: https://github.com/Elgg/Elgg/blob/master/mod/htmlawed/vendors/htmLawed/htmLawed.php please help guys, i dont want filter to table and its classes, please help! Thank you Edited June 25, 2013 by kushal275 Quote Link to comment https://forums.phpfreaks.com/topic/279541-problems-with-htmlawed-please-help/ Share on other sites More sharing options...
dalecosp Posted June 25, 2013 Share Posted June 25, 2013 It looks like you need to read this: http://www.bioinformatics.org/phplabware/internal_utilities/htmLawed/htmLawed_README.htm and either set up or modify an array called $config at the top of whatever PHP file is processing the HTML. HTH, Quote Link to comment https://forums.phpfreaks.com/topic/279541-problems-with-htmlawed-please-help/#findComment-1437806 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.