Re: [SAtalk] Icky buy in PHP-SA-MYSQL (More bugs)

2002-10-31 Thread Josh Trutwin
> The PhP-SA-MYSQL package from www.spamassassin.org/devel/ has a bug. > > If you set $usessl to "no" in the config.inc.php file, it gets set back > to "yes" by: > > if ($usessl = 'yes') { > > about half way down in login.php. > > The fix is to instead use: > > if ($usessl == 'yes') { Also: (for

[SAtalk] Icky buy in PHP-SA-MYSQL

2002-10-31 Thread Josh Trutwin
The PhP-SA-MYSQL package from www.spamassassin.org/devel/ has a bug. If you set $usessl to "no" in the config.inc.php file, it gets set back to "yes" by: if ($usessl = 'yes') { about half way down in login.php. The fix is to instead use: if ($usessl == 'yes') { Thanks, Josh Trutwin http://tr