﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
788	Adding extra tags to FCKeditor.php (<accesscontrol>)	polo	Frederico Caldeira Knabben	"I want FCKeditor to cater for the tag <accesscontrol>, I used from another extention. Currently when I use this tag, it is displayed when viewing the file. I want it not to show, like other HTML tags. I was sure adding this would work, but it didn't:

if ($wgFCKEditorAllow_accesscontrol_tags) {
                        $i = 0;
                        $ta = md5(""aopen"");
                        while (preg_match(""|(<accesscontrol>)|i"", $fcktext, $a)) {
                                $j = $ta.""_"".md5($i);
                                $List[$j][""content""] = $a[0];
                                $List[$j][""index""] = $j;
                                $fcktext = str_replace($a[0], $j, $fcktext);
                                $i++;
                        }
                        $i = 0;
                        $ta = md5(""aclose"");
                        while (preg_match(""|(</accesscontrol>)|i"", $fcktext, $a)) {
                                $j = $ta.""_"".md5($i);
                                $List[$j][""content""] = $a[0];
                                $List[$j][""index""] = $j;
                                $fcktext = str_replace($a[0], $j, $fcktext);
                                $i++;
                        }
                }
Can anybody please assist me or point me in the right direction.

"	Bug	closed	Normal		Server : PHP		invalid		
