Skip to content
Snippets Groups Projects
Commit 97a000f0 authored by Tim Roes's avatar Tim Roes Committed by Andreas Gohr
Browse files

Fixed bug in XML-RPC search.

The score was randomly transfered as string or as integer.
This way it will always be transfered as an integer.
parent 77b9cb84
No related branches found
No related tags found
No related merge requests found
......@@ -411,7 +411,7 @@ class dokuwiki_xmlrpc_server extends IXR_IntrospectionServer {
$pages[] = array(
'id' => $id,
'score' => $score,
'score' => intval($score),
'rev' => filemtime($file),
'mtime' => filemtime($file),
'size' => filesize($file),
......
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