Thanks for pointing this out, fixed in repository.
Mugur
On Wed, Jul 29, 2009 at 2:25 AM, wrote:
> Author: gilnei
> Link: http://code.campware.org/phorum/read.php?9,7350,7350#msg-7350
>
> --------------------------------------------------------------------------------
>
> Just after install I noticied my Apache error log was growing up in Mb of
> PHP Notice.
> Here is the solution:
>
> in classes/SystemPref.php
>
> search for:
>
> $preferences[] = "$key => '" . addslashes($value) . "'"; (line 156)
>
> and change to:
>
> $preferences[] = "'$key' => '" . addslashes($value) . "'";
>
> ---> Add '' between $key
>
> Make any change in System Preferences and your file will be updated.
>
> --
> Sent from Campware Forums
> http://code.campware.org/phorum
>