Last modified: 2006-04-02 07:52:44 UTC
The message says that the page is protected should be different if the page is protected for "sysop" and you are not a sysop, or the page is protected for "autoconfirmed" and you are not an autoconfirmed user. And again, I want to create the patch, for I will be able to update also MessagesHe.php.
I'm not sure I understand the intent of the request.
(In reply to comment #1) > I'm not sure I understand the intent of the request. Currently it is like that algorithm: if ((protectedToSysops() AND notSysop()) OR (protectedToAutoconfirmed() AND notAutoconfirmed()) { show "Page protected, full or semi." } I want it like that: if (protectedToSysops() AND notSysop()) { show "Page fully protected, only for sysops." } else if (protectedToAutoconfirmed() AND notAutoconfirmed()) { show "Page semi protected, only for autoconfirmed." }
What's the point? The page is protected from editing by "you".