1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00
freebsd-ports/mail/squirrelmail/files/patch-plugins__squirrelspell__sqspell_config.php
Adam Weinberger 19821154c0 ispell isn't available in FreeBSD and hasn't been for quite some time.
Change references to ispell into aspell, which is readily available.

PR:		202980
Submitted by:	mcdouga9@egr.msu.edu
2015-10-03 18:04:52 +00:00

13 lines
576 B
PHP

--- plugins/squirrelspell/sqspell_config.php.orig 2015-10-03 17:59:19 UTC
+++ plugins/squirrelspell/sqspell_config.php
@@ -22,9 +22,6 @@ sqgetGlobalVar('username', $username, SQ
*
* $SQSPELL_APP = array( 'English' => 'ispell -a',
* 'Spanish' => 'ispell -d spanish -a' );
- * You can replace ispell with aspell keeping the same commandline:
- * $SQSPELL_APP = array( 'English' => 'aspell -a',
- * 'Spanish' => 'aspell -d spanish -a' );
*/
$SQSPELL_APP = array('English' => 'ispell -a',
'Spanish' => 'ispell -d spanish -a');