commit | author | age
|
dd53e2
|
1 |
<?php |
T |
2 |
|
|
3 |
/* |
|
4 |
+-----------------------------------------------------------------------+ |
|
5 |
| program/steps/mail/spell.inc | |
|
6 |
| | |
|
7 |
| This file is part of the RoundCube Webmail client | |
|
8 |
| Licensed under the GNU GPL | |
|
9 |
| | |
|
10 |
| PURPOSE: | |
5d2b7f
|
11 |
| Invoke the configured or default spell checking engine. | |
dd53e2
|
12 |
| | |
T |
13 |
+-----------------------------------------------------------------------+ |
5d2b7f
|
14 |
| Author: Kris Steinhoff <steinhof@umich.edu> | |
dd53e2
|
15 |
+-----------------------------------------------------------------------+ |
T |
16 |
|
|
17 |
$Id$ |
|
18 |
|
|
19 |
*/ |
|
20 |
|
5d2b7f
|
21 |
if ($spell_engine = $RCMAIL->config->get('spellcheck_engine', 'googie')) { |
T |
22 |
include('spell_'.$spell_engine.'.inc'); |
|
23 |
} |
dd53e2
|
24 |
|
5d2b7f
|
25 |
header('HTTP/1.1 404 Not Found'); |
dd53e2
|
26 |
exit; |
T |
27 |
|
5349b7
|
28 |
?> |