modxcms / docs

7 stars 9 forks source link

[Edit Suggestion] modX.toPlaceholders #183

Closed mintnl closed 7 years ago

mintnl commented 7 years ago

Page Title

modX.toPlaceholders

URL

https://docs.modx.com/revolution/2.x/developing-in-modx/other-development-resources/class-reference/modx/modx.toplaceholders

Issue or Suggestion

in the part about nested placeholders:

$modx->toPlaceholders(array( 'document' => , array('pagetitle' => 'My Page') ));

the extra comma before "array(...." needs to be removed: $modx->toPlaceholders(array( 'document' => array('pagetitle' => 'My Page') ));

Same for example below:

$modx->toPlaceholders( array( 'test' => 'this', 'document' => array('pagetitle' => 'My Page') ), 'tmp' );

Jako commented 7 years ago

Done. Thanks for your correction.