Jump to content

kushal275

New Members
  • Posts

    1
  • Joined

  • Last visited

kushal275's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. 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
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.