mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-01 00:10:36 +01:00
23645ea1c4
git-svn-id: http://svn.automattic.com/wordpress/trunk@8686 1a063a9b-81f0-0310-95a4-ce76da25c4cd
29 lines
868 B
PHP
29 lines
868 B
PHP
<?php
|
|
/**
|
|
* config.php
|
|
* @package MCManager.includes
|
|
* @author Moxiecode
|
|
* @copyright Copyright © 2007, Moxiecode Systems AB, All rights reserved.
|
|
*/
|
|
// General settings
|
|
$config['general.engine'] = 'GoogleSpell';
|
|
//$config['general.engine'] = 'PSpell';
|
|
//$config['general.engine'] = 'PSpellShell';
|
|
//$config['general.remote_rpc_url'] = 'http://some.other.site/some/url/rpc.php';
|
|
|
|
// PSpell settings
|
|
$config['PSpell.mode'] = PSPELL_FAST;
|
|
$config['PSpell.spelling'] = "";
|
|
$config['PSpell.jargon'] = "";
|
|
$config['PSpell.encoding'] = "";
|
|
|
|
// PSpellShell settings
|
|
$config['PSpellShell.mode'] = PSPELL_FAST;
|
|
$config['PSpellShell.aspell'] = '/usr/bin/aspell';
|
|
$config['PSpellShell.tmp'] = '/tmp';
|
|
|
|
// Windows PSpellShell settings
|
|
//$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';
|
|
//$config['PSpellShell.tmp'] = 'c:/temp';
|
|
?>
|