kukko / ganon

Automatically exported from code.google.com/p/ganon
0 stars 0 forks source link

Typo in removeClass #42

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
In gan_node_html.php line:

$class = reg_replace('`\b'.preg_quote($c).'\b`si', '', $class);

should be:

$class = preg_replace('`\b'.preg_quote($c).'\b`si', '', $class);

Original issue reported on code.google.com by ar...@sapegin.ru on 16 Jun 2013 at 12:41