Parent Directory
|
Revision Log
|
Revision Graph
First development release
| 1 | <?php |
| 2 | |
| 3 | function sphinx_suggestion_requirements($phase) { |
| 4 | $t = get_t(); |
| 5 | $pspell = function_exists('pspell_suggest'); |
| 6 | $requirements['pspell'] = array( |
| 7 | 'title' => $t('PSPELL'), |
| 8 | 'value' => $pspell ? 'pspell installed correctly' : 'pspell not installed ('.l('http://www.php.net/manual/en/pspell.installation.php', 'http://www.php.net/manual/en/pspell.installation.php').')', |
| 9 | 'severity' => $pspell ? REQUIREMENT_OK : REQUIREMENT_ERROR, |
| 10 | ); |
| 11 | return $requirements; |
| 12 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |