2009/9/16 Kathleen Borja jane88borj@yahoo.com:
Thanks for the response. Anyway, what I have in my code is like this:
$wgSpecialPages['BikolLiterature'] = 'BikolLiterature';
Is it different from what you have just stated? Or is there a need to append 'Special' at the beginning of the special pagename?
What matters is the name of the class. Somewhere, you'll have something like:
class Blahblah extends SpecialPage {
The "Blahblah" part is what you should fill out for the second 'BikolLiterature' (where I used 'SpecialBikolLiterature').
Roan Kattouw (Catrope)