On 23/05/06, Elliott F. Cable ecable@avxw.com wrote:
I am trying to find a function that pulls a message from the file rather than the database; but wfMsgNoDB() and wfMsgNoDBForContent() don't work because they don't parse links and wiki markup within the content. I guess I'm looking for a cross between wfMsgNoDBForContent () and wfMsgWikiHtml() - is there such a thing? I really need this to make it easy to maintain skin messages across some 15 wikis, more coming every week...
global $wgOut; return $wgOut->parse( wfMsgNoDB( message, param, param... ) );
Rob Church