Skip to content
Snippets Groups Projects
Commit 2c176304 authored by Michael Klier's avatar Michael Klier
Browse files

XMLRPC: getPage() should honour namespace templates

darcs-hash:20080331095402-23886-20331db4e1975c3fbc9c4c59e8688f62d7367390.gz
parent 6531ab03
No related branches found
No related tags found
No related merge requests found
......@@ -128,7 +128,13 @@ class dokuwiki_xmlrpc_server extends IXR_IntrospectionServer {
if(auth_quickaclcheck($id) < AUTH_READ){
return new IXR_Error(1, 'You are not allowed to read this page');
}
return rawWiki($id,$rev);
$text = rawWiki($id,$rev);
if(!$text) {
$data = array($id);
return trigger_event('HTML_PAGE_FROMTEMPLATE',$data,'pageTemplate',true);
} else {
return $text;
}
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment