Skip to content

Commit 91c051b

Browse files
committed
fix legacy XMLRPC call dokuwiki.appendPage dokuwiki#4418
1 parent abf4130 commit 91c051b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/Remote/LegacyApiCore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ public function legacyPutPage($id, $text, $params = [])
317317
*/
318318
public function legacyAppendPage($id, $text, $params = [])
319319
{
320-
$ok = $this->appendPage($id, $text, $params['summary'] ?? '', $params['minor'] ?? false);
320+
$ok = $this->appendPage($id, $text, $params['sum'] ?? '', $params['minor'] ?? false);
321321
if ($ok === true) {
322322
return cleanID($id);
323323
} else {

0 commit comments

Comments
 (0)